diff options
| author | Martin Ridgers <[email protected]> | 2021-10-12 14:16:03 +0200 |
|---|---|---|
| committer | Martin Ridgers <[email protected]> | 2021-10-12 14:17:13 +0200 |
| commit | a473fd01c580283f5888c61a1742e4fd1e4d1a56 (patch) | |
| tree | d8ce3db7261c5b12b910f567f01b1e45fcd79f86 | |
| parent | Changed example project VS generation command to exclude x86 (diff) | |
| download | zen-a473fd01c580283f5888c61a1742e4fd1e4d1a56.tar.xz zen-a473fd01c580283f5888c61a1742e4fd1e4d1a56.zip | |
Corrected incorrect casing of include statements
| -rw-r--r-- | zenstore/CAS.cpp | 2 | ||||
| -rw-r--r-- | zenstore/caslog.cpp | 4 | ||||
| -rw-r--r-- | zenstore/compactcas.cpp | 4 | ||||
| -rw-r--r-- | zenstore/compactcas.h | 2 | ||||
| -rw-r--r-- | zenstore/filecas.cpp | 2 | ||||
| -rw-r--r-- | zenstore/filecas.h | 2 | ||||
| -rw-r--r-- | zenstore/include/zenstore/caslog.h | 2 |
7 files changed, 9 insertions, 9 deletions
diff --git a/zenstore/CAS.cpp b/zenstore/CAS.cpp index a4bbfa340..a26e9710f 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 2bac6affd..c1cb68379 100644 --- a/zenstore/caslog.cpp +++ b/zenstore/caslog.cpp @@ -1,8 +1,8 @@ // Copyright Epic Games, Inc. All Rights Reserved. -#include <zenstore/cas.h> +#include <zenstore/CAS.h> -#include "CompactCas.h" +#include "compactcas.h" #include <zencore/except.h> #include <zencore/filesystem.h> diff --git a/zenstore/compactcas.cpp b/zenstore/compactcas.cpp index 612f87c7c..3631722d4 100644 --- a/zenstore/compactcas.cpp +++ b/zenstore/compactcas.cpp @@ -1,8 +1,8 @@ // Copyright Epic Games, Inc. All Rights Reserved. -#include <zenstore/cas.h> +#include <zenstore/CAS.h> -#include "CompactCas.h" +#include "compactcas.h" #include <zencore/except.h> #include <zencore/logging.h> diff --git a/zenstore/compactcas.h b/zenstore/compactcas.h index a512c3d93..416542e86 100644 --- a/zenstore/compactcas.h +++ b/zenstore/compactcas.h @@ -11,7 +11,7 @@ #include <zencore/uid.h> #include <zencore/windows.h> #include <zenstore/basicfile.h> -#include <zenstore/cas.h> +#include <zenstore/CAS.h> #include <zenstore/caslog.h> namespace zen { diff --git a/zenstore/filecas.cpp b/zenstore/filecas.cpp index f69ed6bdb..3e76de2f9 100644 --- a/zenstore/filecas.cpp +++ b/zenstore/filecas.cpp @@ -1,6 +1,6 @@ // Copyright Epic Games, Inc. All Rights Reserved. -#include "FileCas.h" +#include "filecas.h" #include <zencore/except.h> #include <zencore/filesystem.h> diff --git a/zenstore/filecas.h b/zenstore/filecas.h index 14314ce52..8f36c0170 100644 --- a/zenstore/filecas.h +++ b/zenstore/filecas.h @@ -8,7 +8,7 @@ #include <zencore/iohash.h> #include <zencore/string.h> #include <zencore/thread.h> -#include <zenstore/cas.h> +#include <zenstore/CAS.h> #include <functional> diff --git a/zenstore/include/zenstore/caslog.h b/zenstore/include/zenstore/caslog.h index 00b987383..9a163b477 100644 --- a/zenstore/include/zenstore/caslog.h +++ b/zenstore/include/zenstore/caslog.h @@ -10,7 +10,7 @@ #include <zencore/uid.h> #include <zencore/windows.h> #include <zenstore/basicfile.h> -#include <zenstore/cas.h> +#include <zenstore/CAS.h> #include <functional> |