Hey.

I want to do this:
Code:
#ifndef DISABLE_WARNING_H
#define DISABLE_WARNING_H

#define PUSH_DISABLE_WARNING(warning)
#pragma warning(push)
#pragma warning(disable : 4800)

#define POP_DISABLE_WARNING()
#pragma warning(pop)

#endif
But it's clearly not working... it was a quick attempt since I know that I don't have a clue on how to code it...

Any help?

Cheers.