We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c11f71a commit a4f8b51Copy full SHA for a4f8b51
1 file changed
include/utils/compare_types.h
@@ -31,8 +31,8 @@
31
namespace libMesh
32
{
33
34
-// Copy of boost's enable_if_c
35
-
+// Copy of boost's enable_if_c - needed before we had std::enable_if
+#ifdef LIBMESH_ENABLE_DEPRECATED
36
namespace boostcopy {
37
template <bool B, class T = void>
38
struct enable_if_c {
@@ -42,6 +42,7 @@ struct enable_if_c {
42
template <class T>
43
struct enable_if_c<false, T> {};
44
}
45
+#endif // LIBMESH_ENABLE_DEPRECATED
46
47
48
// TypesEqual takes two types as parameters.
0 commit comments