From 2841b8ff9ca66e0e76ae420c5d93f92f2816452d Mon Sep 17 00:00:00 2001 From: Bruno Turcksin Date: Wed, 6 Dec 2017 13:48:28 -0500 Subject: [PATCH] Remove c++11 guards. --- contrib/python-bindings/include/cell_accessor_wrapper.h | 4 ---- contrib/python-bindings/include/point_wrapper.h | 5 ----- contrib/python-bindings/include/triangulation_wrapper.h | 4 ---- contrib/python-bindings/source/cell_accessor_wrapper.cc | 4 ---- contrib/python-bindings/source/export_cell_accessor.cc | 4 ---- contrib/python-bindings/source/export_point.cc | 4 ---- contrib/python-bindings/source/export_triangulation.cc | 5 ----- contrib/python-bindings/source/point_wrapper.cc | 5 ----- contrib/python-bindings/source/triangulation_wrapper.cc | 5 ----- contrib/python-bindings/source/wrappers.cc | 4 ---- 10 files changed, 44 deletions(-) diff --git a/contrib/python-bindings/include/cell_accessor_wrapper.h b/contrib/python-bindings/include/cell_accessor_wrapper.h index 159057eef8..d56b8064bb 100644 --- a/contrib/python-bindings/include/cell_accessor_wrapper.h +++ b/contrib/python-bindings/include/cell_accessor_wrapper.h @@ -18,8 +18,6 @@ #include -#ifdef DEAL_II_WITH_CXX11 - #include DEAL_II_NAMESPACE_OPEN @@ -140,5 +138,3 @@ namespace python DEAL_II_NAMESPACE_CLOSE #endif - -#endif diff --git a/contrib/python-bindings/include/point_wrapper.h b/contrib/python-bindings/include/point_wrapper.h index d420e4caa2..fd014c4905 100644 --- a/contrib/python-bindings/include/point_wrapper.h +++ b/contrib/python-bindings/include/point_wrapper.h @@ -17,9 +17,6 @@ #define dealii_point_wrapper_h #include - -#ifdef DEAL_II_WITH_CXX11 - #include #include @@ -240,5 +237,3 @@ namespace python DEAL_II_NAMESPACE_CLOSE #endif - -#endif diff --git a/contrib/python-bindings/include/triangulation_wrapper.h b/contrib/python-bindings/include/triangulation_wrapper.h index c80f956dc8..35d4704f2f 100644 --- a/contrib/python-bindings/include/triangulation_wrapper.h +++ b/contrib/python-bindings/include/triangulation_wrapper.h @@ -18,8 +18,6 @@ #include -#ifdef DEAL_II_WITH_CXX11 - #include #include #include @@ -381,5 +379,3 @@ namespace python DEAL_II_NAMESPACE_CLOSE #endif - -#endif diff --git a/contrib/python-bindings/source/cell_accessor_wrapper.cc b/contrib/python-bindings/source/cell_accessor_wrapper.cc index c225f9677c..c34411d79c 100644 --- a/contrib/python-bindings/source/cell_accessor_wrapper.cc +++ b/contrib/python-bindings/source/cell_accessor_wrapper.cc @@ -15,8 +15,6 @@ #include -#ifdef DEAL_II_WITH_CXX11 - #include #include #include @@ -477,5 +475,3 @@ namespace python } DEAL_II_NAMESPACE_CLOSE - -#endif diff --git a/contrib/python-bindings/source/export_cell_accessor.cc b/contrib/python-bindings/source/export_cell_accessor.cc index 887b407307..52891c2dff 100644 --- a/contrib/python-bindings/source/export_cell_accessor.cc +++ b/contrib/python-bindings/source/export_cell_accessor.cc @@ -17,8 +17,6 @@ #include #include -#ifdef DEAL_II_WITH_CXX11 - DEAL_II_NAMESPACE_OPEN namespace python @@ -109,5 +107,3 @@ namespace python } DEAL_II_NAMESPACE_CLOSE - -#endif diff --git a/contrib/python-bindings/source/export_point.cc b/contrib/python-bindings/source/export_point.cc index d79f6c36b1..2d59ab71de 100644 --- a/contrib/python-bindings/source/export_point.cc +++ b/contrib/python-bindings/source/export_point.cc @@ -15,8 +15,6 @@ #include -#ifdef DEAL_II_WITH_CXX11 - #include #include #include @@ -93,5 +91,3 @@ namespace python } DEAL_II_NAMESPACE_CLOSE - -#endif diff --git a/contrib/python-bindings/source/export_triangulation.cc b/contrib/python-bindings/source/export_triangulation.cc index 867cb26c0c..6dc543f4eb 100644 --- a/contrib/python-bindings/source/export_triangulation.cc +++ b/contrib/python-bindings/source/export_triangulation.cc @@ -14,9 +14,6 @@ // --------------------------------------------------------------------- #include - -#ifdef DEAL_II_WITH_CXX11 - #include #include @@ -470,5 +467,3 @@ namespace python } DEAL_II_NAMESPACE_CLOSE - -#endif diff --git a/contrib/python-bindings/source/point_wrapper.cc b/contrib/python-bindings/source/point_wrapper.cc index d58220b048..e1f06ee895 100644 --- a/contrib/python-bindings/source/point_wrapper.cc +++ b/contrib/python-bindings/source/point_wrapper.cc @@ -15,9 +15,6 @@ #include -#ifdef DEAL_II_WITH_CXX11 - - DEAL_II_NAMESPACE_OPEN namespace python @@ -521,5 +518,3 @@ namespace python } DEAL_II_NAMESPACE_CLOSE - -#endif diff --git a/contrib/python-bindings/source/triangulation_wrapper.cc b/contrib/python-bindings/source/triangulation_wrapper.cc index 20d673c769..20db66a713 100644 --- a/contrib/python-bindings/source/triangulation_wrapper.cc +++ b/contrib/python-bindings/source/triangulation_wrapper.cc @@ -14,9 +14,6 @@ // --------------------------------------------------------------------- #include - -#ifdef DEAL_II_WITH_CXX11 - #include #include #include @@ -1112,5 +1109,3 @@ namespace python } DEAL_II_NAMESPACE_CLOSE - -#endif diff --git a/contrib/python-bindings/source/wrappers.cc b/contrib/python-bindings/source/wrappers.cc index 6d644bad54..0be4354a5a 100644 --- a/contrib/python-bindings/source/wrappers.cc +++ b/contrib/python-bindings/source/wrappers.cc @@ -15,8 +15,6 @@ #include -#ifdef DEAL_II_WITH_CXX11 - #include DEAL_II_NAMESPACE_OPEN @@ -72,5 +70,3 @@ BOOST_PYTHON_MODULE(Release) } #endif - -#endif -- 2.39.5