aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Ridgers <[email protected]>2021-10-29 15:10:28 +0200
committerMartin Ridgers <[email protected]>2021-10-29 15:49:27 +0200
commita0bd0821e7a23f1ff3476151c0702be3691dc582 (patch)
tree3910d5d41e32be1a9b48ffdbf612dc99615e604a
parentDisabled SpawnServer() on POSIX for time being (diff)
downloadzen-a0bd0821e7a23f1ff3476151c0702be3691dc582.tar.xz
zen-a0bd0821e7a23f1ff3476151c0702be3691dc582.zip
CAS.cpp/h -> cas.cpp/h to keep Zen's file casing consistent
-rw-r--r--zenserver/cache/structuredcache.cpp2
-rw-r--r--zenserver/compute/apply.cpp2
-rw-r--r--zenserver/testing/launch.cpp2
-rw-r--r--zenstore/cas.cpp (renamed from zenstore/CAS.cpp)2
-rw-r--r--zenstore/caslog.cpp2
-rw-r--r--zenstore/cidstore.cpp2
-rw-r--r--zenstore/compactcas.cpp2
-rw-r--r--zenstore/compactcas.h2
-rw-r--r--zenstore/filecas.h2
-rw-r--r--zenstore/include/zenstore/cas.h (renamed from zenstore/include/zenstore/CAS.h)0
-rw-r--r--zenstore/include/zenstore/caslog.h2
-rw-r--r--zenstore/include/zenstore/cidstore.h2
-rw-r--r--zenstore/zenstore.cpp2
-rw-r--r--zenstore/zenstore.vcxproj2
-rw-r--r--zenstore/zenstore.vcxproj.filters2
15 files changed, 14 insertions, 14 deletions
diff --git a/zenserver/cache/structuredcache.cpp b/zenserver/cache/structuredcache.cpp
index 35cb02cbb..0debea3c6 100644
--- a/zenserver/cache/structuredcache.cpp
+++ b/zenserver/cache/structuredcache.cpp
@@ -10,7 +10,7 @@
#include <zencore/stream.h>
#include <zencore/timer.h>
#include <zenhttp/httpserver.h>
-#include <zenstore/CAS.h>
+#include <zenstore/cas.h>
#include "monitoring/httpstats.h"
#include "structuredcache.h"
diff --git a/zenserver/compute/apply.cpp b/zenserver/compute/apply.cpp
index b64a65f14..059cd152d 100644
--- a/zenserver/compute/apply.cpp
+++ b/zenserver/compute/apply.cpp
@@ -12,7 +12,7 @@
#include <zencore/iobuffer.h>
#include <zencore/iohash.h>
#include <zencore/scopeguard.h>
-#include <zenstore/CAS.h>
+#include <zenstore/cas.h>
#include <zenstore/cidstore.h>
#if ZEN_PLATFORM_WINDOWS
diff --git a/zenserver/testing/launch.cpp b/zenserver/testing/launch.cpp
index 1f38257e5..96f01576c 100644
--- a/zenserver/testing/launch.cpp
+++ b/zenserver/testing/launch.cpp
@@ -9,7 +9,7 @@
#include <zencore/iobuffer.h>
#include <zencore/iohash.h>
#include <zencore/logging.h>
-#include <zenstore/CAS.h>
+#include <zenstore/cas.h>
#if ZEN_PLATFORM_WINDOWS
# include <zencore/windows.h>
diff --git a/zenstore/CAS.cpp b/zenstore/cas.cpp
index bc4825419..4268e314b 100644
--- a/zenstore/CAS.cpp
+++ b/zenstore/cas.cpp
@@ -1,6 +1,6 @@
// Copyright Epic Games, Inc. All Rights Reserved.
-#include <zenstore/CAS.h>
+#include <zenstore/cas.h>
#include "compactcas.h"
#include "filecas.h"
diff --git a/zenstore/caslog.cpp b/zenstore/caslog.cpp
index 449e2fc58..ae2ea973b 100644
--- a/zenstore/caslog.cpp
+++ b/zenstore/caslog.cpp
@@ -1,6 +1,6 @@
// Copyright Epic Games, Inc. All Rights Reserved.
-#include <zenstore/CAS.h>
+#include <zenstore/cas.h>
#include "compactcas.h"
diff --git a/zenstore/cidstore.cpp b/zenstore/cidstore.cpp
index 7a5d7bcf4..c67269e0d 100644
--- a/zenstore/cidstore.cpp
+++ b/zenstore/cidstore.cpp
@@ -5,7 +5,7 @@
#include <zencore/compress.h>
#include <zencore/filesystem.h>
#include <zencore/logging.h>
-#include <zenstore/CAS.h>
+#include <zenstore/cas.h>
#include <zenstore/caslog.h>
#include <filesystem>
diff --git a/zenstore/compactcas.cpp b/zenstore/compactcas.cpp
index 3631722d4..f80bc85c4 100644
--- a/zenstore/compactcas.cpp
+++ b/zenstore/compactcas.cpp
@@ -1,6 +1,6 @@
// Copyright Epic Games, Inc. All Rights Reserved.
-#include <zenstore/CAS.h>
+#include <zenstore/cas.h>
#include "compactcas.h"
diff --git a/zenstore/compactcas.h b/zenstore/compactcas.h
index 47e989fe9..a23b80828 100644
--- a/zenstore/compactcas.h
+++ b/zenstore/compactcas.h
@@ -10,7 +10,7 @@
#include <zencore/thread.h>
#include <zencore/uid.h>
#include <zenstore/basicfile.h>
-#include <zenstore/CAS.h>
+#include <zenstore/cas.h>
#include <zenstore/caslog.h>
#if ZEN_PLATFORM_WINDOWS
diff --git a/zenstore/filecas.h b/zenstore/filecas.h
index 04ffffdd2..a86232588 100644
--- a/zenstore/filecas.h
+++ b/zenstore/filecas.h
@@ -8,7 +8,7 @@
#include <zencore/iobuffer.h>
#include <zencore/iohash.h>
#include <zencore/thread.h>
-#include <zenstore/CAS.h>
+#include <zenstore/cas.h>
#include <functional>
diff --git a/zenstore/include/zenstore/CAS.h b/zenstore/include/zenstore/cas.h
index 7f8b5bfa2..7f8b5bfa2 100644
--- a/zenstore/include/zenstore/CAS.h
+++ b/zenstore/include/zenstore/cas.h
diff --git a/zenstore/include/zenstore/caslog.h b/zenstore/include/zenstore/caslog.h
index 8189da87e..1c6ee0bf6 100644
--- a/zenstore/include/zenstore/caslog.h
+++ b/zenstore/include/zenstore/caslog.h
@@ -9,7 +9,7 @@
#include <zencore/thread.h>
#include <zencore/uid.h>
#include <zenstore/basicfile.h>
-#include <zenstore/CAS.h>
+#include <zenstore/cas.h>
#if ZEN_PLATFORM_WINDOWS
# include <zencore/windows.h>
diff --git a/zenstore/include/zenstore/cidstore.h b/zenstore/include/zenstore/cidstore.h
index 26bf2bbde..871ac553e 100644
--- a/zenstore/include/zenstore/cidstore.h
+++ b/zenstore/include/zenstore/cidstore.h
@@ -6,7 +6,7 @@
#include <tsl/robin_map.h>
#include <zencore/iohash.h>
-#include <zenstore/CAS.h>
+#include <zenstore/cas.h>
#include <filesystem>
diff --git a/zenstore/zenstore.cpp b/zenstore/zenstore.cpp
index d852fa64b..cc4a34fdb 100644
--- a/zenstore/zenstore.cpp
+++ b/zenstore/zenstore.cpp
@@ -2,7 +2,7 @@
#include "zenstore/zenstore.h"
-#include <zenstore/CAS.h>
+#include <zenstore/cas.h>
#include <zenstore/basicfile.h>
#include "filecas.h"
diff --git a/zenstore/zenstore.vcxproj b/zenstore/zenstore.vcxproj
index eb2ecd02b..9431b7b11 100644
--- a/zenstore/zenstore.vcxproj
+++ b/zenstore/zenstore.vcxproj
@@ -28,7 +28,7 @@
<ClInclude Include="include\zenstore\cidstore.h" />
<ClInclude Include="include\zenstore\gc.h" />
<ClInclude Include="include\zenstore\scrub.h" />
- <ClInclude Include="include\zenstore\CAS.h" />
+ <ClInclude Include="include\zenstore\cas.h" />
<ClInclude Include="include\zenstore\caslog.h" />
<ClInclude Include="include\zenstore\zenstore.h" />
</ItemGroup>
diff --git a/zenstore/zenstore.vcxproj.filters b/zenstore/zenstore.vcxproj.filters
index 8a52c69f6..904de0748 100644
--- a/zenstore/zenstore.vcxproj.filters
+++ b/zenstore/zenstore.vcxproj.filters
@@ -14,7 +14,7 @@
<ItemGroup>
<ClInclude Include="compactcas.h" />
<ClInclude Include="filecas.h" />
- <ClInclude Include="include\zenstore\CAS.h" />
+ <ClInclude Include="include\zenstore\cas.h" />
<ClInclude Include="include\zenstore\caslog.h" />
<ClInclude Include="include\zenstore\gc.h" />
<ClInclude Include="include\zenstore\scrub.h" />