Description:
g++ bug reports and suggested fixes.
|
|
|
Variadic templates and CRTP
|
| |
Hi, either i do not understand some parts of variadic templates, or g++ has an erronous handling of types canonization when using variadic templates and CRTP. Exemple code below. /* g++-mp-4.5 (GCC) 4.5.0 20091001 (experimental) * g++-mp-4.5 -std=c++0x bug.cc * In function 'int main()': * 25:41: error: invalid initialization of reference of type 'base<a,... more »
|
|
gnome themes
|
| |
Hi guys i have downloaded and install gnome themes but don't know how to install ..cause i am not much using gui.. can anybody give mel ink of nice gui themes and also let me know how to install it ..? please help me
|
|
xdmcp problem
|
| |
Hi to all i am new to this group. friends i am not able to get session from xdmcp (linux to linux ). everything is configured fine but not able to get session . help me out .. Thx
|
|
std::map as a default arg to a member function/constructor
|
| |
I have encountered a bug (I think). When I compile this (g++ 4.2.3): #include <map> struct A { std::map< int, int > m; A( std::map< int, int > m1 = std::map< int, int >()) : m( m1 ) { } }; int main() { } I get: ../main.cpp:14: error: expected ‘,’ or ‘...’ before ‘>’ token... more »
|
|
g++ unqualified-id error gives wrong line
|
| |
Compile the following code, which is missing a semi-colon on the last line: class WrongLine { WrongLine() { } private: int n; ...In g++ 4.0.3 (Ubuntu 4.0.3-1ubuntu5), the above yields: GBug.h:3: error: expected unqualified-id at end of input But its actually line 6 where the error occurs, which can be fixed by... more »
|
|
Linux user group for Vapi & Surroundings is started
|
| |
We would like you all to be more informed on Linux & Opensource. We are from a social group Dakshin Gujarat Linux Users Group (dglug.org). Please allow us to reach you and clear our ideas on spreading more and more information on this great future of IT called Opensource & Linux.
|
|
using-declaration visibility with dependent base-class
|
| |
Hello, I think i found a bug in gcc 4.3.2. The following code sample should not compile, though it does: template<class T> class A { public: int foo(); ...template<class T> class B : protected A<T> { // also works with private inheritance protected: // also with private: using A<T>::foo; // this injects A<T>::foo into the scope, so... more »
|
|
Static Variable
|
| |
Hello, I am linking the following .cpp file to my program (approx. 800 modules), but the constructor is never called: Foo.cpp: ...static class Foo { public: Foo() { std::cout << "Foo Constructor is called" << std::endl;} ...If I am adding this code snippet to some other .cpp file with more code and dependencies to other modules, the constructor is called. But... more »
|
|
|