Skip to content

Commit eabfe09

Browse files
committedNov 2, 2015
Rename and move basicmacros.h to util/basic_macros.h
1 parent 8f49358 commit eabfe09

File tree

6 files changed

+5
-5
lines changed

6 files changed

+5
-5
lines changed
 

‎src/objdef.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
2020
#ifndef OBJDEF_HEADER
2121
#define OBJDEF_HEADER
2222

23-
#include "basicmacros.h"
23+
#include "util/basic_macros.h"
2424
#include "porting.h"
2525

2626
class IGameDef;

‎src/threading/mutex.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ DEALINGS IN THE SOFTWARE.
4444
#include <pthread.h>
4545
#endif
4646

47-
#include "basicmacros.h"
47+
#include "util/basic_macros.h"
4848

4949
class Mutex
5050
{

‎src/threading/semaphore.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
2828
#include <semaphore.h>
2929
#endif
3030

31-
#include "basicmacros.h"
31+
#include "util/basic_macros.h"
3232

3333
class Semaphore {
3434
public:

‎src/threading/thread.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ DEALINGS IN THE SOFTWARE.
2626
#ifndef THREADING_THREAD_H
2727
#define THREADING_THREAD_H
2828

29-
#include "basicmacros.h"
29+
#include "util/basic_macros.h"
3030
#include "threading/atomic.h"
3131
#include "threading/mutex.h"
3232
#include "threads.h"
File renamed without changes.

‎src/util/numeric.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
2020
#ifndef UTIL_NUMERIC_HEADER
2121
#define UTIL_NUMERIC_HEADER
2222

23-
#include "../basicmacros.h"
23+
#include "basic_macros.h"
2424
#include "../irrlichttypes.h"
2525
#include "../irr_v2d.h"
2626
#include "../irr_v3d.h"

0 commit comments

Comments
 (0)
Please sign in to comment.