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>2021-08-21 03:53:24 +0300
committerNiall Douglas (s [underscore] sourceforge {at} nedprod [dot] com) <spamtrap@nedprod.com>2021-08-21 03:53:24 +0300
commit46f0760e7ed2b80c46acd91bacc130049620bee6 (patch)
tree20264533265873491efd5dc96cbac3b99e5592c6 /include/llfio/v2.0/llfio.hpp
parentd3ff87fd8b91f06d4f7bd240860ef68f15a03621 (diff)
Reimplemented current_process_memory_usage() for Linux so it's a lot faster for very large programs.
Debugged the map handle cache somewhat, but it's still failing. Tomorrow!
Diffstat (limited to 'include/llfio/v2.0/llfio.hpp')
-rw-r--r--include/llfio/v2.0/llfio.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llfio/v2.0/llfio.hpp b/include/llfio/v2.0/llfio.hpp
index 0cb651e6..9ecf3845 100644
--- a/include/llfio/v2.0/llfio.hpp
+++ b/include/llfio/v2.0/llfio.hpp
@@ -34,7 +34,7 @@
// If C++ Modules are on and we are not compiling the library,
// we are either generating the interface or importing
-#if !defined(__cpp_modules) || defined(GENERATING_LLFIO_MODULE_INTERFACE) || LLFIO_DISABLE_CXX_MODULES
+#if !LLFIO_ENABLE_CXX_MODULES || !defined(__cpp_modules) || defined(GENERATING_LLFIO_MODULE_INTERFACE) || LLFIO_DISABLE_CXX_MODULES
// C++ Modules not on, therefore include as usual
#define LLFIO_INCLUDE_ALL
#else