Help with code

Programming, for all ages and all languages.
beyondsociety

Help with code

Post by beyondsociety »

I am trying to run this piece of code and it won't work. It doesn't like the:

Code: Select all

#error WARNING: This is not the right version to use
Why am I doing wrong.

Heres the code:

Code: Select all

#if ((__VER__!=__major__) || ((__VER__ == __major__ ) && (__VER_MINOR__ < __minor__ )))
#error WARNING: This is not the right version to use 
#endif
beyondsociety

Re:Help with code

Post by beyondsociety »

By the way, I forgot to add this:

Code: Select all

#define __major__ 1
#define __minor__ 0
smartguy240

Re:Help with code

Post by smartguy240 »

Is this in C++?
Tom

Re:Help with code

Post by Tom »

Yep...C++...(or C)

...


what I do is:

#ifdef SOME_DEF
#error THE ERROR!

#elif defined( SOMEDEF2 )
#error !!!
#endif
Tom

Re:Help with code

Post by Tom »

helped?
smartguy240

Re:Help with code

Post by smartguy240 »

What actual Compiler are you using... then i might be able to help you
Tom

Re:Help with code

Post by Tom »

Sorry smguy...but you know C++? I didn't know that...

If you really know C++...why didn't you know what that:

#define

was?
smartguy240

Re:Help with code

Post by smartguy240 »

Ah but that is where you are wrong my freind... many different languages use the #define command....TAKE AGI FOR INSTANCE... :P
Tom

Re:Help with code

Post by Tom »

Ohhhhhh... sorry :)
smartguy240

Re:Help with code

Post by smartguy240 »

Why would that work?...is that even what he asked?
grey wolf

Re:Help with code

Post by grey wolf »

beyondsociety, if __VER__ is 1.0, it will pass the first test because 1 does NOT equal 1.0. the second test will fail because it is neither 1 nor 0. it can only pass iff __VER__ is simultaneously 1 AND less than 0. obviously, that's very hard to do.

i don't know what compiler you're using, so i don't know what __VER__ contains, but you're testing the same define against two other unequal defines.

i'd take that code out.
smartguy240

Re:Help with code

Post by smartguy240 »

I agree with this guy... but until so... just try and make do..is this all in the immeadite where you are finding this?
Tom

Re:Help with code

Post by Tom »

Here's what I did for integers in pk0.7:

#define FULLVERSION 0
#define VERSIONDOT 7

Print( FULLVERSION ); Print( "." ); Print( VERSIONDOT );

Output:

0.7
beyondsociety

Re:Help with code

Post by beyondsociety »

Tom, that is not what I meant. I already know how to do that.

What I meant was, I want to check to see if my code is a certain version. If its the right version, then it will run. If its not the right version, it errors out.

Could someone give me a example.
Tom

Re:Help with code

Post by Tom »

do what I did and just check each Define.
Post Reply