diff options
author | Benoit Germain <benoit.germain@ubisoft.com> | 2024-10-28 18:16:00 +0100 |
---|---|---|
committer | Benoit Germain <benoit.germain@ubisoft.com> | 2024-10-28 18:16:00 +0100 |
commit | 69c6796fb1356d78be8fefa93a80b30295b6bb54 (patch) | |
tree | 4ca567c7f2c0759d3da5748ebfd04c8f972bfd68 | |
parent | 0d757e1dcf3cf1518ae2fce9e8864dcc55d14d3a (diff) | |
download | lanes-69c6796fb1356d78be8fefa93a80b30295b6bb54.tar.gz lanes-69c6796fb1356d78be8fefa93a80b30295b6bb54.tar.bz2 lanes-69c6796fb1356d78be8fefa93a80b30295b6bb54.zip |
Renamed intercopycontext.h → intercopycontext.hpp, state.h → state.hpp
-rw-r--r-- | src/intercopycontext.cpp | 2 | ||||
-rw-r--r-- | src/intercopycontext.hpp (renamed from src/intercopycontext.h) | 0 | ||||
-rw-r--r-- | src/keeper.cpp | 4 | ||||
-rw-r--r-- | src/lane.cpp | 2 | ||||
-rw-r--r-- | src/lanes.cpp | 4 | ||||
-rw-r--r-- | src/state.cpp | 4 | ||||
-rw-r--r-- | src/state.hpp (renamed from src/state.h) | 0 | ||||
-rw-r--r-- | src/universe.cpp | 4 |
8 files changed, 10 insertions, 10 deletions
diff --git a/src/intercopycontext.cpp b/src/intercopycontext.cpp index 3470fe4..672d49e 100644 --- a/src/intercopycontext.cpp +++ b/src/intercopycontext.cpp | |||
@@ -24,7 +24,7 @@ THE SOFTWARE. | |||
24 | =============================================================================== | 24 | =============================================================================== |
25 | */ | 25 | */ |
26 | #include "_pch.hpp" | 26 | #include "_pch.hpp" |
27 | #include "intercopycontext.h" | 27 | #include "intercopycontext.hpp" |
28 | 28 | ||
29 | #include "debugspew.hpp" | 29 | #include "debugspew.hpp" |
30 | #include "deep.hpp" | 30 | #include "deep.hpp" |
diff --git a/src/intercopycontext.h b/src/intercopycontext.hpp index 2b247d2..2b247d2 100644 --- a/src/intercopycontext.h +++ b/src/intercopycontext.hpp | |||
diff --git a/src/keeper.cpp b/src/keeper.cpp index d7ed77c..af8bd1a 100644 --- a/src/keeper.cpp +++ b/src/keeper.cpp | |||
@@ -40,10 +40,10 @@ | |||
40 | #include "_pch.hpp" | 40 | #include "_pch.hpp" |
41 | #include "keeper.hpp" | 41 | #include "keeper.hpp" |
42 | 42 | ||
43 | #include "intercopycontext.h" | 43 | #include "intercopycontext.hpp" |
44 | #include "lane.hpp" | 44 | #include "lane.hpp" |
45 | #include "linda.hpp" | 45 | #include "linda.hpp" |
46 | #include "state.h" | 46 | #include "state.hpp" |
47 | 47 | ||
48 | // There is a table at _R[kLindasRegKey] (aka LindasDB) | 48 | // There is a table at _R[kLindasRegKey] (aka LindasDB) |
49 | // This table contains entries of the form [Linda*] = {KeysDB...} | 49 | // This table contains entries of the form [Linda*] = {KeysDB...} |
diff --git a/src/lane.cpp b/src/lane.cpp index 0b86e99..c9e334c 100644 --- a/src/lane.cpp +++ b/src/lane.cpp | |||
@@ -27,7 +27,7 @@ THE SOFTWARE. | |||
27 | #include "lane.hpp" | 27 | #include "lane.hpp" |
28 | 28 | ||
29 | #include "debugspew.hpp" | 29 | #include "debugspew.hpp" |
30 | #include "intercopycontext.h" | 30 | #include "intercopycontext.hpp" |
31 | #include "threading.hpp" | 31 | #include "threading.hpp" |
32 | #include "tools.hpp" | 32 | #include "tools.hpp" |
33 | 33 | ||
diff --git a/src/lanes.cpp b/src/lanes.cpp index 82977ca..7dd626b 100644 --- a/src/lanes.cpp +++ b/src/lanes.cpp | |||
@@ -83,11 +83,11 @@ THE SOFTWARE. | |||
83 | #include "lanes.hpp" | 83 | #include "lanes.hpp" |
84 | 84 | ||
85 | #include "deep.hpp" | 85 | #include "deep.hpp" |
86 | #include "intercopycontext.h" | 86 | #include "intercopycontext.hpp" |
87 | #include "keeper.hpp" | 87 | #include "keeper.hpp" |
88 | #include "lane.hpp" | 88 | #include "lane.hpp" |
89 | #include "nameof.hpp" | 89 | #include "nameof.hpp" |
90 | #include "state.h" | 90 | #include "state.hpp" |
91 | #include "threading.hpp" | 91 | #include "threading.hpp" |
92 | #include "tools.hpp" | 92 | #include "tools.hpp" |
93 | 93 | ||
diff --git a/src/state.cpp b/src/state.cpp index e6900d3..c8f1ef8 100644 --- a/src/state.cpp +++ b/src/state.cpp | |||
@@ -32,9 +32,9 @@ THE SOFTWARE. | |||
32 | */ | 32 | */ |
33 | 33 | ||
34 | #include "_pch.hpp" | 34 | #include "_pch.hpp" |
35 | #include "state.h" | 35 | #include "state.hpp" |
36 | 36 | ||
37 | #include "intercopycontext.h" | 37 | #include "intercopycontext.hpp" |
38 | #include "lane.hpp" | 38 | #include "lane.hpp" |
39 | #include "lanes.hpp" | 39 | #include "lanes.hpp" |
40 | #include "tools.hpp" | 40 | #include "tools.hpp" |
diff --git a/src/state.h b/src/state.hpp index 7401fe9..7401fe9 100644 --- a/src/state.h +++ b/src/state.hpp | |||
diff --git a/src/universe.cpp b/src/universe.cpp index 9f28f6a..1aafbff 100644 --- a/src/universe.cpp +++ b/src/universe.cpp | |||
@@ -32,10 +32,10 @@ THE SOFTWARE. | |||
32 | #include "universe.hpp" | 32 | #include "universe.hpp" |
33 | 33 | ||
34 | #include "deep.hpp" | 34 | #include "deep.hpp" |
35 | #include "intercopycontext.h" | 35 | #include "intercopycontext.hpp" |
36 | #include "keeper.hpp" | 36 | #include "keeper.hpp" |
37 | #include "lane.hpp" | 37 | #include "lane.hpp" |
38 | #include "state.h" | 38 | #include "state.hpp" |
39 | 39 | ||
40 | extern LUAG_FUNC(linda); | 40 | extern LUAG_FUNC(linda); |
41 | 41 | ||