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

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'extern/carve/include/carve/vcpp_config.h')
-rw-r--r--extern/carve/include/carve/vcpp_config.h17
1 files changed, 0 insertions, 17 deletions
diff --git a/extern/carve/include/carve/vcpp_config.h b/extern/carve/include/carve/vcpp_config.h
deleted file mode 100644
index 5ebd4006159..00000000000
--- a/extern/carve/include/carve/vcpp_config.h
+++ /dev/null
@@ -1,17 +0,0 @@
-/* include/carve/config.h. Generated from config.h.in by configure. */
-#pragma once
-
-#include <math.h>
-
-/* Define if using boost collections. Preferred, because the visual C++ unordered collections are slow and memory hungry. */
-#define HAVE_BOOST_UNORDERED_COLLECTIONS
-
-#if defined(_MSC_VER)
-# pragma warning(disable:4201)
-#endif
-
-#include <math.h>
-
-static inline double round(double value) {
- return (value >= 0) ? floor(value + 0.5) : ceil(value - 0.5);
-}