diff options
author | fonsinchen <fonsinchen@openttd.org> | 2013-10-20 13:45:50 +0000 |
---|---|---|
committer | fonsinchen <fonsinchen@openttd.org> | 2013-10-20 13:45:50 +0000 |
commit | 62c221a845b42b054df7f63848e348445356509f (patch) | |
tree | 70fe8e54248843ee6487fc885643f643ca7ccad9 | |
parent | e21ae348786106a82b95adfafa5c8061dfb5242f (diff) | |
download | openttd-62c221a845b42b054df7f63848e348445356509f.tar.xz |
(svn r25888) -Codechange: Add a smallstack type.
-rw-r--r-- | projects/openttd_vs100.vcxproj | 1 | ||||
-rw-r--r-- | projects/openttd_vs100.vcxproj.filters | 3 | ||||
-rw-r--r-- | projects/openttd_vs80.vcproj | 4 | ||||
-rw-r--r-- | projects/openttd_vs90.vcproj | 4 | ||||
-rw-r--r-- | source.list | 1 |
5 files changed, 13 insertions, 0 deletions
diff --git a/projects/openttd_vs100.vcxproj b/projects/openttd_vs100.vcxproj index c632a3a01..c693d4d46 100644 --- a/projects/openttd_vs100.vcxproj +++ b/projects/openttd_vs100.vcxproj @@ -676,6 +676,7 @@ <ClInclude Include="..\src\core\random_func.hpp" /> <ClInclude Include="..\src\core\smallmap_type.hpp" /> <ClInclude Include="..\src\core\smallmatrix_type.hpp" /> + <ClInclude Include="..\src\core\smallstack_type.hpp" /> <ClInclude Include="..\src\core\smallvec_type.hpp" /> <ClInclude Include="..\src\core\sort_func.hpp" /> <ClInclude Include="..\src\core\string_compare_type.hpp" /> diff --git a/projects/openttd_vs100.vcxproj.filters b/projects/openttd_vs100.vcxproj.filters index 3146a2427..9d8c0e17e 100644 --- a/projects/openttd_vs100.vcxproj.filters +++ b/projects/openttd_vs100.vcxproj.filters @@ -1257,6 +1257,9 @@ <ClInclude Include="..\src\core\smallmatrix_type.hpp"> <Filter>Core Source Code</Filter> </ClInclude> + <ClInclude Include="..\src\core\smallstack_type.hpp"> + <Filter>Core Source Code</Filter> + </ClInclude> <ClInclude Include="..\src\core\smallvec_type.hpp"> <Filter>Core Source Code</Filter> </ClInclude> diff --git a/projects/openttd_vs80.vcproj b/projects/openttd_vs80.vcproj index 30bb9df72..3fb9e9e29 100644 --- a/projects/openttd_vs80.vcproj +++ b/projects/openttd_vs80.vcproj @@ -1983,6 +1983,10 @@ > </File> <File + RelativePath=".\..\src\core\smallstack_type.hpp" + > + </File> + <File RelativePath=".\..\src\core\smallvec_type.hpp" > </File> diff --git a/projects/openttd_vs90.vcproj b/projects/openttd_vs90.vcproj index 61a3d5130..ea184d8aa 100644 --- a/projects/openttd_vs90.vcproj +++ b/projects/openttd_vs90.vcproj @@ -1980,6 +1980,10 @@ > </File> <File + RelativePath=".\..\src\core\smallstack_type.hpp" + > + </File> + <File RelativePath=".\..\src\core\smallvec_type.hpp" > </File> diff --git a/source.list b/source.list index 04b6ed45e..2199f7280 100644 --- a/source.list +++ b/source.list @@ -426,6 +426,7 @@ core/random_func.cpp core/random_func.hpp core/smallmap_type.hpp core/smallmatrix_type.hpp +core/smallstack_type.hpp core/smallvec_type.hpp core/sort_func.hpp core/string_compare_type.hpp |