Skip to content

Commit fe9136c

Browse files
committed
Cleanup.
1 parent 8ee7f1c commit fe9136c

20 files changed

+21
-0
lines changed

src/allocator.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
* License: https://github.com/bkaradzic/bx#license-bsd-2-clause
44
*/
55

6+
#include "bx_p.h"
67
#include <bx/allocator.h>
78

89
#include <malloc.h>

src/bx.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
* License: https://github.com/bkaradzic/bx#license-bsd-2-clause
44
*/
55

6+
#include "bx_p.h"
67
#include <bx/debug.h>
78
#include <bx/readerwriter.h>
89

src/commandline.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
* License: https://github.com/bkaradzic/bx#license-bsd-2-clause
44
*/
55

6+
#include "bx_p.h"
67
#include <bx/commandline.h>
78
#include <bx/string.h>
89

src/crtnone.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
* License: https://github.com/bkaradzic/bx#license-bsd-2-clause
44
*/
55

6+
#include "bx_p.h"
67
#include <bx/debug.h>
78
#include <bx/sort.h>
89
#include <bx/readerwriter.h>

src/debug.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
* License: https://github.com/bkaradzic/bx#license-bsd-2-clause
44
*/
55

6+
#include "bx_p.h"
67
#include <bx/debug.h>
78
#include <bx/string.h> // isPrint
89
#include <bx/readerwriter.h> // WriterI

src/dtoa.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
* License: https://github.com/bkaradzic/bx#license-bsd-2-clause
44
*/
55

6+
#include "bx_p.h"
67
#include <bx/cpu.h>
78
#include <bx/math.h>
89
#include <bx/string.h>

src/easing.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
* License: https://github.com/bkaradzic/bx#license-bsd-2-clause
44
*/
55

6+
#include "bx_p.h"
67
#include <bx/easing.h>
78

89
namespace bx

src/file.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
* License: https://github.com/bkaradzic/bx#license-bsd-2-clause
44
*/
55

6+
#include "bx_p.h"
67
#include <bx/file.h>
78

89
#include <stdio.h>

src/filepath.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
* License: https://github.com/bkaradzic/bx#license-bsd-2-clause
44
*/
55

6+
#include "bx_p.h"
67
#include <bx/file.h>
78
#include <bx/os.h>
89
#include <bx/readerwriter.h>

src/hash.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
* License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
44
*/
55

6+
#include "bx_p.h"
67
#include <bx/hash.h>
78

89
namespace bx

src/math.cpp

+2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@
33
* License: https://github.com/bkaradzic/bx#license-bsd-2-clause
44
*/
55

6+
#include "bx_p.h"
67
#include <bx/math.h>
8+
79
#include <math.h>
810

911
namespace bx

src/mutex.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
* License: https://github.com/bkaradzic/bx#license-bsd-2-clause
44
*/
55

6+
#include "bx_p.h"
67
#include <bx/mutex.h>
78

89
#if BX_CONFIG_SUPPORTS_THREADING

src/os.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
* License: https://github.com/bkaradzic/bx#license-bsd-2-clause
44
*/
55

6+
#include "bx_p.h"
67
#include <bx/string.h>
78
#include <bx/os.h>
89
#include <bx/uint32_t.h>

src/process.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
* License: https://github.com/bkaradzic/bx#license-bsd-2-clause
44
*/
55

6+
#include "bx_p.h"
67
#include <bx/process.h>
78

89
#include <stdio.h>

src/settings.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
* License: https://github.com/bkaradzic/bx#license-bsd-2-clause
44
*/
55

6+
#include "bx_p.h"
67
#include <bx/settings.h>
78

89
namespace

src/sort.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
* License: https://github.com/bkaradzic/bx#license-bsd-2-clause
44
*/
55

6+
#include "bx_p.h"
67
#include <bx/sort.h>
78

89
namespace bx

src/string.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
* License: https://github.com/bkaradzic/bx#license-bsd-2-clause
44
*/
55

6+
#include "bx_p.h"
67
#include <bx/allocator.h>
78
#include <bx/hash.h>
89
#include <bx/readerwriter.h>

src/thread.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
* License: https://github.com/bkaradzic/bx#license-bsd-2-clause
44
*/
55

6+
#include "bx_p.h"
67
#include <bx/thread.h>
78

89
#if BX_PLATFORM_ANDROID \

src/timer.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
* License: https://github.com/bkaradzic/bx#license-bsd-2-clause
44
*/
55

6+
#include "bx_p.h"
67
#include <bx/timer.h>
78

89
#if BX_PLATFORM_ANDROID

src/url.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
* License: https://github.com/bkaradzic/bnet#license-bsd-2-clause
44
*/
55

6+
#include "bx_p.h"
67
#include <bx/url.h>
78

89
namespace bx

0 commit comments

Comments
 (0)