diff options
author | Benoit Germain <benoit.germain@ubisoft.com> | 2024-10-28 17:57:31 +0100 |
---|---|---|
committer | Benoit Germain <benoit.germain@ubisoft.com> | 2024-10-28 17:57:31 +0100 |
commit | 76da2875eb2af9f8191c2adf4f9663ac3a2cec89 (patch) | |
tree | 112bd51318e401bf8745123919a635e765365318 | |
parent | cb6e1c2f3b93d5de02de4a8c8f13891e33674a36 (diff) | |
download | lanes-76da2875eb2af9f8191c2adf4f9663ac3a2cec89.tar.gz lanes-76da2875eb2af9f8191c2adf4f9663ac3a2cec89.tar.bz2 lanes-76da2875eb2af9f8191c2adf4f9663ac3a2cec89.zip |
Renamed allocator.h → allocator.hpp, cancel.h → cancel.hpp, keeper.h → keeper.hpp, tools.h → tools.hpp
-rw-r--r-- | src/allocator.hpp (renamed from src/allocator.h) | 0 | ||||
-rw-r--r-- | src/cancel.cpp | 2 | ||||
-rw-r--r-- | src/cancel.hpp (renamed from src/cancel.h) | 0 | ||||
-rw-r--r-- | src/deep.cpp | 2 | ||||
-rw-r--r-- | src/intercopycontext.cpp | 2 | ||||
-rw-r--r-- | src/intercopycontext.h | 2 | ||||
-rw-r--r-- | src/keeper.cpp | 2 | ||||
-rw-r--r-- | src/keeper.hpp (renamed from src/keeper.h) | 0 | ||||
-rw-r--r-- | src/lane.cpp | 2 | ||||
-rw-r--r-- | src/lane.h | 2 | ||||
-rw-r--r-- | src/lanes.cpp | 4 | ||||
-rw-r--r-- | src/linda.cpp | 2 | ||||
-rw-r--r-- | src/linda.h | 2 | ||||
-rw-r--r-- | src/nameof.cpp | 2 | ||||
-rw-r--r-- | src/state.cpp | 2 | ||||
-rw-r--r-- | src/tools.cpp | 2 | ||||
-rw-r--r-- | src/tools.hpp (renamed from src/tools.h) | 0 | ||||
-rw-r--r-- | src/universe.cpp | 2 | ||||
-rw-r--r-- | src/universe.h | 4 |
19 files changed, 17 insertions, 17 deletions
diff --git a/src/allocator.h b/src/allocator.hpp index fa48c46..fa48c46 100644 --- a/src/allocator.h +++ b/src/allocator.hpp | |||
diff --git a/src/cancel.cpp b/src/cancel.cpp index fda6dd5..2ef5b5c 100644 --- a/src/cancel.cpp +++ b/src/cancel.cpp | |||
@@ -33,7 +33,7 @@ THE SOFTWARE. | |||
33 | ]]-- | 33 | ]]-- |
34 | */ | 34 | */ |
35 | #include "_pch.hpp" | 35 | #include "_pch.hpp" |
36 | #include "cancel.h" | 36 | #include "cancel.hpp" |
37 | 37 | ||
38 | #include "debugspew.h" | 38 | #include "debugspew.h" |
39 | #include "lane.h" | 39 | #include "lane.h" |
diff --git a/src/cancel.h b/src/cancel.hpp index 7230169..7230169 100644 --- a/src/cancel.h +++ b/src/cancel.hpp | |||
diff --git a/src/deep.cpp b/src/deep.cpp index 10d5fd5..9d5b839 100644 --- a/src/deep.cpp +++ b/src/deep.cpp | |||
@@ -34,7 +34,7 @@ THE SOFTWARE. | |||
34 | #include "_pch.hpp" | 34 | #include "_pch.hpp" |
35 | #include "deep.hpp" | 35 | #include "deep.hpp" |
36 | 36 | ||
37 | #include "tools.h" | 37 | #include "tools.hpp" |
38 | 38 | ||
39 | /*-- Metatable copying --*/ | 39 | /*-- Metatable copying --*/ |
40 | 40 | ||
diff --git a/src/intercopycontext.cpp b/src/intercopycontext.cpp index 073daff..a5e2a64 100644 --- a/src/intercopycontext.cpp +++ b/src/intercopycontext.cpp | |||
@@ -28,7 +28,7 @@ THE SOFTWARE. | |||
28 | 28 | ||
29 | #include "debugspew.h" | 29 | #include "debugspew.h" |
30 | #include "deep.hpp" | 30 | #include "deep.hpp" |
31 | #include "keeper.h" | 31 | #include "keeper.hpp" |
32 | #include "lane.h" | 32 | #include "lane.h" |
33 | #include "linda.h" | 33 | #include "linda.h" |
34 | #include "nameof.h" | 34 | #include "nameof.h" |
diff --git a/src/intercopycontext.h b/src/intercopycontext.h index 3a5db36..2b247d2 100644 --- a/src/intercopycontext.h +++ b/src/intercopycontext.h | |||
@@ -1,6 +1,6 @@ | |||
1 | #pragma once | 1 | #pragma once |
2 | 2 | ||
3 | #include "tools.h" | 3 | #include "tools.hpp" |
4 | 4 | ||
5 | // forwards | 5 | // forwards |
6 | class Universe; | 6 | class Universe; |
diff --git a/src/keeper.cpp b/src/keeper.cpp index 517bd1c..67c5a38 100644 --- a/src/keeper.cpp +++ b/src/keeper.cpp | |||
@@ -38,7 +38,7 @@ | |||
38 | ]]-- | 38 | ]]-- |
39 | */ | 39 | */ |
40 | #include "_pch.hpp" | 40 | #include "_pch.hpp" |
41 | #include "keeper.h" | 41 | #include "keeper.hpp" |
42 | 42 | ||
43 | #include "intercopycontext.h" | 43 | #include "intercopycontext.h" |
44 | #include "lane.h" | 44 | #include "lane.h" |
diff --git a/src/keeper.h b/src/keeper.hpp index 2354c2e..2354c2e 100644 --- a/src/keeper.h +++ b/src/keeper.hpp | |||
diff --git a/src/lane.cpp b/src/lane.cpp index 3a22a79..0456d98 100644 --- a/src/lane.cpp +++ b/src/lane.cpp | |||
@@ -29,7 +29,7 @@ THE SOFTWARE. | |||
29 | #include "debugspew.h" | 29 | #include "debugspew.h" |
30 | #include "intercopycontext.h" | 30 | #include "intercopycontext.h" |
31 | #include "threading.h" | 31 | #include "threading.h" |
32 | #include "tools.h" | 32 | #include "tools.hpp" |
33 | 33 | ||
34 | // ################################################################################################# | 34 | // ################################################################################################# |
35 | 35 | ||
@@ -1,6 +1,6 @@ | |||
1 | #pragma once | 1 | #pragma once |
2 | 2 | ||
3 | #include "cancel.h" | 3 | #include "cancel.hpp" |
4 | #include "uniquekey.hpp" | 4 | #include "uniquekey.hpp" |
5 | #include "universe.h" | 5 | #include "universe.h" |
6 | 6 | ||
diff --git a/src/lanes.cpp b/src/lanes.cpp index 5271a3c..5fcb9a4 100644 --- a/src/lanes.cpp +++ b/src/lanes.cpp | |||
@@ -84,12 +84,12 @@ THE SOFTWARE. | |||
84 | 84 | ||
85 | #include "deep.hpp" | 85 | #include "deep.hpp" |
86 | #include "intercopycontext.h" | 86 | #include "intercopycontext.h" |
87 | #include "keeper.h" | 87 | #include "keeper.hpp" |
88 | #include "lane.h" | 88 | #include "lane.h" |
89 | #include "nameof.h" | 89 | #include "nameof.h" |
90 | #include "state.h" | 90 | #include "state.h" |
91 | #include "threading.h" | 91 | #include "threading.h" |
92 | #include "tools.h" | 92 | #include "tools.hpp" |
93 | 93 | ||
94 | #if !(defined(PLATFORM_XBOX) || defined(PLATFORM_WIN32) || defined(PLATFORM_POCKETPC)) | 94 | #if !(defined(PLATFORM_XBOX) || defined(PLATFORM_WIN32) || defined(PLATFORM_POCKETPC)) |
95 | #include <sys/time.h> | 95 | #include <sys/time.h> |
diff --git a/src/linda.cpp b/src/linda.cpp index aeca8d6..753e761 100644 --- a/src/linda.cpp +++ b/src/linda.cpp | |||
@@ -35,7 +35,7 @@ THE SOFTWARE. | |||
35 | 35 | ||
36 | #include "lane.h" | 36 | #include "lane.h" |
37 | #include "lindafactory.h" | 37 | #include "lindafactory.h" |
38 | #include "tools.h" | 38 | #include "tools.hpp" |
39 | 39 | ||
40 | // ################################################################################################# | 40 | // ################################################################################################# |
41 | // ################################################################################################# | 41 | // ################################################################################################# |
diff --git a/src/linda.h b/src/linda.h index 583089d..88ee639 100644 --- a/src/linda.h +++ b/src/linda.h | |||
@@ -1,6 +1,6 @@ | |||
1 | #pragma once | 1 | #pragma once |
2 | 2 | ||
3 | #include "cancel.h" | 3 | #include "cancel.hpp" |
4 | #include "deep.hpp" | 4 | #include "deep.hpp" |
5 | #include "universe.h" | 5 | #include "universe.h" |
6 | 6 | ||
diff --git a/src/nameof.cpp b/src/nameof.cpp index 1e2752d..496f9d9 100644 --- a/src/nameof.cpp +++ b/src/nameof.cpp | |||
@@ -27,7 +27,7 @@ THE SOFTWARE. | |||
27 | #include "_pch.hpp" | 27 | #include "_pch.hpp" |
28 | #include "nameof.h" | 28 | #include "nameof.h" |
29 | 29 | ||
30 | #include "tools.h" | 30 | #include "tools.hpp" |
31 | 31 | ||
32 | // ################################################################################################# | 32 | // ################################################################################################# |
33 | 33 | ||
diff --git a/src/state.cpp b/src/state.cpp index cf28e2c..dabdd6f 100644 --- a/src/state.cpp +++ b/src/state.cpp | |||
@@ -37,7 +37,7 @@ THE SOFTWARE. | |||
37 | #include "intercopycontext.h" | 37 | #include "intercopycontext.h" |
38 | #include "lane.h" | 38 | #include "lane.h" |
39 | #include "lanes.hpp" | 39 | #include "lanes.hpp" |
40 | #include "tools.h" | 40 | #include "tools.hpp" |
41 | #include "universe.h" | 41 | #include "universe.h" |
42 | 42 | ||
43 | // ################################################################################################# | 43 | // ################################################################################################# |
diff --git a/src/tools.cpp b/src/tools.cpp index 80a9f0b..35a46e9 100644 --- a/src/tools.cpp +++ b/src/tools.cpp | |||
@@ -33,7 +33,7 @@ THE SOFTWARE. | |||
33 | */ | 33 | */ |
34 | #include "_pch.hpp" | 34 | #include "_pch.hpp" |
35 | 35 | ||
36 | #include "tools.h" | 36 | #include "tools.hpp" |
37 | 37 | ||
38 | #include "debugspew.h" | 38 | #include "debugspew.h" |
39 | #include "universe.h" | 39 | #include "universe.h" |
diff --git a/src/tools.h b/src/tools.hpp index c587500..c587500 100644 --- a/src/tools.h +++ b/src/tools.hpp | |||
diff --git a/src/universe.cpp b/src/universe.cpp index 96ef34d..3f2878f 100644 --- a/src/universe.cpp +++ b/src/universe.cpp | |||
@@ -33,7 +33,7 @@ THE SOFTWARE. | |||
33 | 33 | ||
34 | #include "deep.hpp" | 34 | #include "deep.hpp" |
35 | #include "intercopycontext.h" | 35 | #include "intercopycontext.h" |
36 | #include "keeper.h" | 36 | #include "keeper.hpp" |
37 | #include "lane.h" | 37 | #include "lane.h" |
38 | #include "state.h" | 38 | #include "state.h" |
39 | 39 | ||
diff --git a/src/universe.h b/src/universe.h index 8a2a471..3959817 100644 --- a/src/universe.h +++ b/src/universe.h | |||
@@ -1,7 +1,7 @@ | |||
1 | #pragma once | 1 | #pragma once |
2 | 2 | ||
3 | #include "allocator.h" | 3 | #include "allocator.hpp" |
4 | #include "keeper.h" | 4 | #include "keeper.hpp" |
5 | #include "lanesconf.h" | 5 | #include "lanesconf.h" |
6 | #include "tracker.h" | 6 | #include "tracker.h" |
7 | #include "uniquekey.hpp" | 7 | #include "uniquekey.hpp" |