vote up 0 vote down star

Hi, I have a small problem with a define. I want to assign it to an integer variable but the compiler says it's undeclared.

Here's what the code looks like: defines.h

#ifndef DEFINES_H
#define DEFINES_H

#define MYDEFINE 2

#endif

myclass.h

namespace mynamespace {
class myClass {
    int someFunction();
};
}

myclass.cxx

#include "defines.h"
#include "myclass.h"
namespace mynamespace {
int myClass::someFunction() {
    int var = MYDEFINE;
    return 0;
}
}

In the line with the int assignment the compiler error takes place. I also tried to use another define, defined in the same header file as above, as a function parameter with the same effect. Any ideas? Thanks in advance.

I know using defines is kinda bad habit, but I only extend an existing project and I try to stay in their design ways.

EDIT: The error message simply is: Fehler 1 error C2065: 'MYDEFINE': nichtdeklarierter Bezeichner ... As you might see this is not the real source code, but I think I was very careful while putting together the question.

EDIT2: Thanks for the hint with the #warning. There were 2 files with the same name in different folders. I've no idea why the compiler didn't bring this up. Anyway, it works now. Thanks.

flag

Please include the exact error message you're getting, sometimes the devil is in the details. – unwind Apr 7 at 14:27

5 Answers

vote up 2 vote down check

You should check whether the symbol MYDEFINE is really defined.

Check whether the header file where it is declared is really included (and compiled). Use #warning near the define to make sure it is compiled for myclass.cxx:

#ifndef DEFINES_H
#define DEFINES_H

#define MYDEFINE 2
#warning My define is defined

#endif

If it is not compiling (you'll not find the warning message in compilation log), make a search for DEFINES_H. It might be already defined somewhere else.

link|flag
vote up 0 vote down

You need to see what the preprocessor is doing to your code - try compiling myclass.cxx with the -P flag and examining the .i file so generated.

link|flag
vote up 1 vote down

It's probably complaining about you not having declared your class. Try #including "myclass.h"

Edit:

Oh, missing ';' after your class declaration.

link|flag
heh heh, oh well. I shouldn't be so literal with example code, i suppose. – veefu Apr 7 at 14:41
+1 for pointing it out – DaClown Apr 7 at 14:47
vote up 2 vote down

Let's put it all together:

    #ifndef DEFINES_H
    #define DEFINES_H
    #define MYDEFINE 2
    #endif

    namespace mynamespace {
    class myClass {
        int someFunction();
    };    // note ; missing in your code
    }

    namespace mynamespace {
    int myClass::someFunction() {
        int var = MYDEFINE;
        return 0;
    }

This compiles with no errors, so there is something wrong in your #includes.

link|flag
+1 Nice catch. Little syntax errors usually give the compiler a lot of grief and this is a classic one. – D.Shawley Apr 7 at 14:41
Thanks for the hint, I forgot the ; and also to #include "myclass.h". – DaClown Apr 7 at 14:45
vote up 0 vote down

Some other header file also uses DEFINES_H?

One argument for #pragma once...

link|flag
That tends to make no difference, as you still run into problems with two "defines.h" headers in a project. – MSalters Apr 7 at 14:29
I would add that #pragma once Microsoft specific, not standard. – Cătălin Pitiș Apr 7 at 14:33
#pragma once is not just MS, e.g. gcc also implements it. It is not recognized by all preprocessors though so if you're in a really diverse environment it won't be usable. – danio Apr 7 at 15:01
@MSalters Not so (although other compilers may be broken) - I just tried this with 2 header files with same name in different paths: both get processed, whereas with #ifdef guards they don't. – danio Apr 7 at 15:10

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.