From 2add19e5a5fb322572ff82df12491786cabf16b9 Mon Sep 17 00:00:00 2001 From: Jonas Rembser Date: Tue, 12 Mar 2024 10:24:29 +0100 Subject: [PATCH] Remove Windows workaround for `std::endl` that is not needed anymore --- python/cppyy/__init__.py | 7 ------- 1 file changed, 7 deletions(-) diff --git a/python/cppyy/__init__.py b/python/cppyy/__init__.py index 039e1b28..bc8ca114 100644 --- a/python/cppyy/__init__.py +++ b/python/cppyy/__init__.py @@ -435,10 +435,3 @@ class faux_meta(type): def __new__(cls, name, this_bases, d): return nc_meta(name, bases, d) return type.__new__(faux_meta, 'faux_meta', (), {}) - - -#- workaround (TODO: may not be needed with Clang9) -------------------------- -if 'win32' in sys.platform: - cppdef("""template<> - std::basic_ostream>& __cdecl std::endl>( - std::basic_ostream>&);""")