The incomplete-type tag has no wiki summary.
16
votes
3answers
240 views
Is &*p valid C, given that p is a pointer to an incomplete type?
Is the following example a valid complete translation unit in C?
struct foo;
struct foo *bar(struct foo *j)
{
return &*j;
}
struct foo is an incomplete type, but I cannot find an explicit ...
13
votes
2answers
115 views
Static field of an incomplete type - is it legal?
Is declaring a static field of a type that is incomplete at the moment of the class definition legal in C++? For example:
Foo.h:
class Foo
{
public:
// ...
private:
class Bar;
static Bar ...
10
votes
2answers
272 views
Does the GotW #101 “solution” actually solve anything?
First read Herb's Sutters GotW posts concerning pimpl in C++11:
GotW #100: Compilation Firewalls (Difficulty: 6/10)
GotW #101: Compilation Firewalls, Part 2 (Difficulty: 8/10)
I'm having some ...
9
votes
2answers
187 views
Incomplete class usage in template
I am very surprised that on various sampled versions of g++, the following compiles without error or warning:
// Adapted from boost::checked_delete()
template <class T> inline void ...
8
votes
3answers
561 views
delete objects of incomplete type
This one made me think:
class X;
void foo(X* p)
{
delete p;
}
How can we possibly delete p if we do not even know whether X has visible destructor? g++ 4.5.1 gives three warnings:
warning: ...
7
votes
3answers
248 views
Handles Comparison: empty classes vs. undefined classes vs. void*
Microsoft's GDI+ defines many empty classes to be treated as handles internally. For example, (source GdiPlusGpStubs.h)
//Approach 1
class GpGraphics {};
class GpBrush {};
class GpTexture : public ...
6
votes
3answers
121 views
Can standard container templates be instantiated with incomplete types?
Sometimes it's useful to instantiate a standard container with an incomplete type to obtain a recursive structure:
struct multi_tree_node { // Does work in most implementations
std::vector< ...
6
votes
3answers
299 views
Initialising a struct that contains a vector of itself
I have a menu system that I want to initialise from constant data. A MenuItem can contain, as a sub-menu, a vector of MenuItems. But it only works up to a point. Here are the bare bones of the ...
5
votes
7answers
205 views
Disadvantages of forward declaration?
In C++ and Objective-C, I've gotten into the habit of forward-declaring any necessary classes that do not need to be defined in the header, and then importing the header files defining those classes ...
5
votes
4answers
209 views
I've done a shady thing
Are (seemingly) shady things ever acceptable for practical reasons?
First, a bit of background on my code. I'm writing the graphics module of my 2D game. My module contains more than two classes, but ...
4
votes
6answers
547 views
Incomplete type in class
I have a class that should have a private member of the same class. So like this -
class A{
private:
A member;
}
But it tells me that member is an incomplete type. Why? It doesn't tell ...
4
votes
2answers
116 views
Mutual return types of member functions (C++)
Is it possible in C++ to have two classes, let's call them A and B, such that A has a member function f that returns an object of class B, and B has a member function g that returns an object of class ...
4
votes
4answers
348 views
“parameter has incomplete type” warning
I have this in a C file:
struct T
{
int foo;
};
the C file has an include to an h file with those lines:
typedef struct T T;
void listInsertFirst(T data, int key, LinkedList* ListToInsertTo);
...
3
votes
2answers
205 views
templated circular inheritance
in this code, compiler complain about undefined MyClassB, which is understandable :
class MyClassA;
class MyClassB;
template <class T> class BaseClass : public T {
};
class MyClassA : public ...
3
votes
1answer
162 views
How to declare a friend that is a member function of another not yet defined class in C++?
How I declare B's constructor to be a friend of A? I tried:
class A
{
private:
A();
public:
friend B::B();
};
class B
{
public:
B();
};
3
votes
1answer
178 views
delete expression
Reference here
That destructor will also implicitly
call the destructor of the auto_ptr
object. And that will delete the
pointer it holds, that points to the C
object - without knowing the
...
2
votes
3answers
84 views
Where are complete types (not) required?
I was recently surprised to know that this code compiles (at least on gcc and MSVC++):
template<typename T>
class A {
public:
T getT() { return T(); }
};
class B : public A<B> { };
...
2
votes
1answer
260 views
Incompatible types in java
I am trying to take a String from a JTextField using getText and apply it to the method
SearchString but i am presented with the error Incompatible Types i cannot see anything wrong with this code ...
2
votes
2answers
91 views
Using pthread on Linux 2.4 - getting “incomplete type” compilation error
I'm working on Linux 2.4 (doing h.w for my O.S course),
I want to use pthread to implement a reader-writer lock.
In rw_lock.c I have:
#include <pthread.h>
#include <stdlib.h>
#include ...
2
votes
3answers
314 views
C++: Referencing external types. / Dealing with incomplete types
I have two classes: one of them has an incomplete type, and the second needs to use that incomplete type. Is there any way to reference an "external type", in a manner similar to how you reference an ...
2
votes
4answers
204 views
Pointers to Incomplete Types
Consider the following:
class Incomplete;
class Complete
{
Incomplete* Foo; // Will only compile if Foo is a pointer.
};
class Incomplete
{
Complete Bar; // Bar can be a pointer or an ...
2
votes
1answer
653 views
Pimpl with smart pointers in a class with a template constructor: weird incomplete type issue
When using smart pointers with the pImpl idiom, as in
struct Foo
{
private:
struct Impl;
boost::scoped_ptr<Impl> pImpl;
};
the obvious problem is that Foo::Impl is incomplete at the ...
1
vote
1answer
53 views
C++ stat.h incomplete type and cannot be defined
I am having a very strange issue with stat.h
At the top of my code, I have declarations:
#include <sys\types.h>
#include <sys\stat.h>
And function prototype:
int FileSize(string ...
1
vote
3answers
119 views
Circular Dependencies / Incomplete Types
In C++, I have a problem with circular dependencies / incomplete types. The situation is as follows:
Stuffcollection.h
#include "Spritesheet.h";
class Stuffcollection {
public:
void myfunc ...
1
vote
3answers
288 views
How to delete all QGraphicsItem from QGraphicsScene
I've written a derived class from QGraphicsScene. At a point I need to remove all items from the scene and I want the items to be physically destroyed (destructor called). I tried the following:
...
1
vote
3answers
695 views
invalid use of incomplete type / forward declaration
I tried to look at the similar problems listed here on Stackoverflow and on Google but they deal mostly with templates and that's not my case. I'm using GCC 4.4.5 on Debian Testing 64bit.
So, I have ...
1
vote
1answer
219 views
Incomplete type using typedef function pointer
I've got an abstract base class that defines an interface to data sinks. Concrete implementations of data sinks are acquired via factories. In an effort to tidy up code, I created a typedef for the ...
1
vote
1answer
293 views
C++ SDL Mixer Mix_Music : incomplete type is not allowed
whenever I try to create Mix_Music instance, I get this error: "incomplete type is not allowed".
However, I need to get the address of the pointer music before calling Mix_LoadMUS(file);
Code:
...
1
vote
3answers
2k views
Error: Field has an incomplete type
quaternion.h:15: error: field ‘v’ has incomplete type
Hi! I am stuck on an error that I cannot seem to solve.
Below is my code:
#ifndef QUATERNION_H
#define QUATERNION_H
#include "vec3.h"
class ...
0
votes
1answer
15 views
Dereferencing Pointer Error when processing Ip header from raw Sockets
void parse_message(char *buffer, int len)
{
struct iphrd *ip_header = (struct iphrd *)buffer;
int recv_hopcount = (unsigned int)(ip_header->ttl);
//hops[recv_hopcount]++;
}
error: ...
0
votes
1answer
26 views
aggregate ‘QSqlQuery testQuery’ has incomplete type and cannot be defined
I'm sure this must be something simple, but I can't quite work out what's up here...
I'm trying to create a QSqlQuery, and the compiler is giving me this:
error: aggregate ‘QSqlQuery testQuery’ has ...
0
votes
1answer
11 views
gcc: cross-referencing class compilation
if got a quite simple question (at least I hope so), but I cannot figure out what to do to tell g++ in what order to "complete" my classes. I reduced it to this simple example:
base.h:
#ifndef ...
0
votes
3answers
82 views
invalid use of incomplete type / forward declaration of errors. possible missuse of abstract class? (C++)
now i get the error:
error: ‘oset<std::basic_string<char, std::char_traits<char>, std::allocator<char> > >::Comparator’ is an inaccessible base of ‘CaseSensitive’
I've ...
0
votes
1answer
73 views
CoreLocation warning: incompatible type
I get the following error warning:
Passing 'MyCLController *__strong' to parameter of incompatible type 'id<CLLocationManagerDelegate>'
... on this line:
self.locationManager.delegate = ...
0
votes
4answers
345 views
Incomplete Type
I'm getting a incomplete type error for the 'next' and 'previous' variables. I'm not sure what I am doing wrong because I am very rusty on writing classes in C++. Any help would be appreciated!
...
0
votes
3answers
256 views
Qt 4 C++ Getting an error when using 3 classes that use each other, error: field `m_Employer' has incomplete type
I'm in desperate need of help and direction. Been trying to get this to compile, but battling due to the fact that there are 3 classes and not hundreds on how the includes/forward declarations should ...
0
votes
2answers
248 views
C Variable has incomplete initializer
I am trying to make a struct with a default value, as described here: Default values in a C Struct. However, I have this C code, inside a header file:
/* tokens.h */
typedef struct {
char *ID;
...
0
votes
4answers
73 views
Having issues with #includes and incomplete types
I have gotten rid of a circular dependence but am still having issues with another problem.
I am still learning and hope that someone can explain to me more about what is wrong with my ...