1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-08-13 19:54:17 +02:00

additional tool for cleaning header files (no more #pragma once) and some netbeans project tweaks

This commit is contained in:
Łukasz Wychrystenko
2008-12-26 01:03:49 +00:00
parent b114582857
commit fa38b6ef79

View File

@@ -1,5 +1,5 @@
#ifndef _NODRZE_H
#define _NODRZE_H
#ifndef __NODRZE_H__
#define __NODRZE_H__
//don't look here, it's a horrible, partially working implementation of RB trees
@@ -909,4 +909,4 @@ template <typename T> void nodrze<T>::pre(std::ostream & strum, wezel<T> * wsk)
if (wsk->prawy != NIL)
pre(strum,wsk->prawy);
};
#endif //_NODRZE_H
#endif // __NODRZE_H__