is_final_test.cpp: Fix for compilers with no final keyword.

This commit is contained in:
jzmaddock
2018-05-08 07:58:34 +01:00
parent 356635219b
commit 963131c1db

View File

@@ -14,9 +14,11 @@
#include "check_integral_constant.hpp"
#include <iostream>
#if !defined(BOOST_NO_CXX11_FINAL)
template <class T>
struct final_template final
{};
#endif
template <class T>
struct non_final_template
{};