Displaying 4 results from an estimated 4 matches for "u2018t".
Did you mean:
u2018
2012 Oct 23
1
Compiling samba4 hangs at [1815/3978] Compiling librpc/ndr/ndr_basic.c
...ext_codepoint_handle\u2019
../lib/util/charset/charset.h:186: error: expected declaration specifiers
or \u2018...\u2019 before \u2018codepoint_t\u2019
../lib/util/charset/charset.h:188: error: expected \u2018=\u2019,
\u2018,\u2019, \u2018;\u2019, \u2018asm\u2019 or \u2018__attribute__\u2019
before \u2018toupper_m\u2019
../lib/util/charset/charset.h:189: error: expected \u2018=\u2019,
\u2018,\u2019, \u2018;\u2019, \u2018asm\u2019 or \u2018__attribute__\u2019
before \u2018tolower_m\u2019
../lib/util/charset/charset.h:190: error: expected \u2018)\u2019 before
\u2018val\u2019
../lib/util/charset/charset...
2010 Jul 12
1
[LLVMdev] Operation on argument of 2d array of templated class can NOT pass llvm-gcc
for example:
template <int N>
class T {
public:
int V;
};
T<4> test(T<4> a[4][8]) {
return a[3][3];
}
in LLVM23 release, it will crash llvm-gcc,
test.cpp: In function \u2018T<4> test(T<4> (*)[8])\u2019:
test.cpp:7: internal compiler error: Segmentation fault
Please submit a full bug report,
with preprocessed source if appropriate.
See <URL:http://llvm.org/bugs/> for instructions.
in TOT llvm-gcc (r108122)
it can NOT pass syntax check:
test.cpp: In...
2010 Nov 10
2
[LLVMdev] llvm-gcc not compatible with gcc on a small case?
I found a case which gcc can compile while llvm-gcc can not. I'm using the
gcc4.1 and the most recent llvm-gcc.
Here is the case:
template <int N>
class T {
public:
int V;
};
T<4> test(T<4> a[4][8]) {
return a[3][3];
}
llvm-gcc dumped:
fail.cpp: In function \u2018T<4> test(T<4> (*)[8])\u2019:
fail.cpp:7: error: invalid use of incomplete type \u2018class T<4>\u2019
fail.cpp:2: error: declaration of \u2018class T<4>\u2019
Guys, any idea for this issue?
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <h...
2010 Nov 10
1
[LLVMdev] Fw: llvm-gcc not compatible with gcc on a small case?
...is the case:
>>
>>template <int N>
>>class T {
>>public:
>> int V;
>>};
>>
>>T<4> test(T<4> a[4][8]) {
>> return a[3][3];
>>}
>>
>>
>>
>>llvm-gcc dumped:
>>
>>fail.cpp: In function \u2018T<4> test(T<4> (*)[8])\u2019:
>>fail.cpp:7: error: invalid use of incomplete type \u2018class T<4>\u2019
>>fail.cpp:2: error: declaration of \u2018class T<4>\u2019
>>
>>Guys, any idea for this issue?
>>
>
-------------- next part -----...