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 'intern/moto/include/MT_MinMax.h')
-rwxr-xr-xintern/moto/include/MT_MinMax.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/intern/moto/include/MT_MinMax.h b/intern/moto/include/MT_MinMax.h
index f06c86feae5..06f8a8d18c8 100755
--- a/intern/moto/include/MT_MinMax.h
+++ b/intern/moto/include/MT_MinMax.h
@@ -46,10 +46,6 @@
#ifndef MT_MINMAX_H
#define MT_MINMAX_H
-#ifdef HAVE_CONFIG_H
-#include <config.h>
-#endif
-
template <class T>
inline const T& MT_min(const T& a, const T& b) {
return b < a ? b : a;