Tagged Questions
6
votes
4answers
164 views
Template neglects const (why?)
Does somebody know, why this compiles??
template< typename TBufferTypeFront, typename TBufferTypeBack = TBufferTypeFront>
class FrontBackBuffer{
public:
FrontBackBuffer(
const ...
3
votes
2answers
170 views
Compiler complaints for const object not initialized [duplicate]
Possible Duplicate:
uninitialized const
I understand that a const object needs to initialized.
So for the following code,
class sample
{};
int main()
{
const sample obj;
return 0;
...
5
votes
2answers
173 views
How to prevent default initialization of a const variable with a class type
I have a custom class that I want to behave like a built-in type.
However I have noticed that you can initialise a const variable of that class without providing an initial value. My class currently ...
10
votes
3answers
2k views
uninitialized const
This compiles perfectly fine with the current MSVC compiler:
struct Foo
{
} const foo;
However, it fails to compile with the current g++ compiler:
error: uninitialized const 'foo' [-fpermissive]
...