summaryrefslogtreecommitdiff
path: root/zen/basic_math.h
diff options
context:
space:
mode:
authorB Stack <bgstack15@gmail.com>2020-11-02 12:45:42 +0000
committerB Stack <bgstack15@gmail.com>2020-11-02 12:45:42 +0000
commit3162cbdd63eaf7e930c8b2ebe604e10ecb369d08 (patch)
tree9939cdd1735bf15e97ad6700419c0604cac7c59e /zen/basic_math.h
parentMerge branch '11.2' into 'master' (diff)
parentadd upstream 11.3 (diff)
downloadFreeFileSync-3162cbdd63eaf7e930c8b2ebe604e10ecb369d08.tar.gz
FreeFileSync-3162cbdd63eaf7e930c8b2ebe604e10ecb369d08.tar.bz2
FreeFileSync-3162cbdd63eaf7e930c8b2ebe604e10ecb369d08.zip
Merge branch '11.3' into 'master'11.3
add upstream 11.3 See merge request opensource-tracking/FreeFileSync!27
Diffstat (limited to 'zen/basic_math.h')
-rw-r--r--zen/basic_math.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/zen/basic_math.h b/zen/basic_math.h
index 26fb9e58..0f5191e3 100644
--- a/zen/basic_math.h
+++ b/zen/basic_math.h
@@ -10,7 +10,7 @@
#include <cassert>
#include <algorithm>
#include <cmath>
- #include <numbers>
+#include <numbers>
#include "type_traits.h"
bgstack15