Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/windirstat/llfio.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNiall Douglas (s [underscore] sourceforge {at} nedprod [dot] com) <spamtrap@nedprod.com>2018-07-03 11:57:35 +0300
committerNiall Douglas (s [underscore] sourceforge {at} nedprod [dot] com) <spamtrap@nedprod.com>2018-07-03 11:57:35 +0300
commit6efe2493a65540d3f484a8b7f27d5298d49c9da4 (patch)
tree55ff8924a57c370c16eb69ab90b35ff7d723bf78 /include/llfio/version.hpp
parent53d415a3b69d2680c15ae2c56a9baf9b149ad71d (diff)
Lots more afio => llfio renaming
Diffstat (limited to 'include/llfio/version.hpp')
-rw-r--r--include/llfio/version.hpp40
1 files changed, 20 insertions, 20 deletions
diff --git a/include/llfio/version.hpp b/include/llfio/version.hpp
index 7f337cf3..91b33e42 100644
--- a/include/llfio/version.hpp
+++ b/include/llfio/version.hpp
@@ -1,34 +1,34 @@
//! \file version.hpp Controls the version of AFIO for cmake, shared library and C++ namespace mangling
-#undef AFIO_VERSION_MAJOR
-#undef AFIO_VERSION_MINOR
-#undef AFIO_VERSION_PATCH
-#undef AFIO_VERSION_REVISION
-#undef AFIO_VERSION_GLUE2
-#undef AFIO_VERSION_GLUE
-#undef AFIO_HEADERS_VERSION
-#undef AFIO_NAMESPACE_VERSION
+#undef LLFIO_VERSION_MAJOR
+#undef LLFIO_VERSION_MINOR
+#undef LLFIO_VERSION_PATCH
+#undef LLFIO_VERSION_REVISION
+#undef LLFIO_VERSION_GLUE2
+#undef LLFIO_VERSION_GLUE
+#undef LLFIO_HEADERS_VERSION
+#undef LLFIO_NAMESPACE_VERSION
//! \brief Major version for cmake and DLL version stamping \ingroup config
-#define AFIO_VERSION_MAJOR 2
+#define LLFIO_VERSION_MAJOR 2
//! \brief Minor version for cmake and DLL version stamping \ingroup config
-#define AFIO_VERSION_MINOR 0
+#define LLFIO_VERSION_MINOR 0
//! \brief Patch version for cmake and DLL version stamping \ingroup config
-#define AFIO_VERSION_PATCH 0
+#define LLFIO_VERSION_PATCH 0
//! \brief Revision version for cmake and DLL version stamping \ingroup config
-#define AFIO_VERSION_REVISION 0
+#define LLFIO_VERSION_REVISION 0
//! \brief Defined between stable releases of AFIO. It means the inline namespace
//! will be permuted per-commit to ensure ABI uniqueness. \ingroup config
-#define AFIO_UNSTABLE_VERSION
+#define LLFIO_UNSTABLE_VERSION
-#define AFIO_VERSION_GLUE2(a, b, c) a ## b ## c
-#define AFIO_VERSION_GLUE(a, b, c) AFIO_VERSION_GLUE2(a, b, c)
-#define AFIO_NAMESPACE_VERSION AFIO_VERSION_GLUE(AFIO_VERSION_MAJOR, _, AFIO_VERSION_MINOR)
+#define LLFIO_VERSION_GLUE2(a, b, c) a ## b ## c
+#define LLFIO_VERSION_GLUE(a, b, c) LLFIO_VERSION_GLUE2(a, b, c)
+#define LLFIO_NAMESPACE_VERSION LLFIO_VERSION_GLUE(LLFIO_VERSION_MAJOR, _, LLFIO_VERSION_MINOR)
#if defined(_MSC_VER) && !defined(__clang__)
-#define AFIO_HEADERS_VERSION AFIO_VERSION_GLUE(AFIO_VERSION_MAJOR, ., AFIO_VERSION_MINOR)
+#define LLFIO_HEADERS_VERSION LLFIO_VERSION_GLUE(LLFIO_VERSION_MAJOR, ., LLFIO_VERSION_MINOR)
#else
-#define AFIO_HEADERS_VERSION AFIO_VERSION_MAJOR.AFIO_VERSION_MINOR
+#define LLFIO_HEADERS_VERSION LLFIO_VERSION_MAJOR.LLFIO_VERSION_MINOR
#endif
-//! \brief The namespace AFIO_V2_NAMESPACE::v ## AFIO_NAMESPACE_VERSION
-#define AFIO_NAMESPACE_VERSION AFIO_VERSION_GLUE(AFIO_VERSION_MAJOR, _, AFIO_VERSION_MINOR)
+//! \brief The namespace LLFIO_V2_NAMESPACE::v ## LLFIO_NAMESPACE_VERSION
+#define LLFIO_NAMESPACE_VERSION LLFIO_VERSION_GLUE(LLFIO_VERSION_MAJOR, _, LLFIO_VERSION_MINOR)