From a4305f8f2aa6c51559fa1a6b3b971173cc2500f9 Mon Sep 17 00:00:00 2001 From: Olivier Parcollet Date: Mon, 21 Oct 2013 15:04:16 +0200 Subject: [PATCH] utility : correct a compile macro - _j notation was not compiled... --- triqs/utility/complex_ops.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/triqs/utility/complex_ops.hpp b/triqs/utility/complex_ops.hpp index 843ed64e..0b6bba80 100644 --- a/triqs/utility/complex_ops.hpp +++ b/triqs/utility/complex_ops.hpp @@ -2,7 +2,7 @@ #define TRIQS_UTILITY_COMPLEX_OPS_H #include -#ifdef TRIQS_COMPILER_IS_C11_COMPLIANT +#ifndef TRIQS_WORKAROUND_INTEL_COMPILER_14_BUGS inline std::complex operator"" _j ( long double x ) { return std::complex(0,x); } inline std::complex operator"" _j ( unsigned long long x ) { return std::complex(0,x); } #endif