2
0
mirror of https://github.com/boostorg/math.git synced 2026-01-19 04:22:09 +00:00

Math.Quaternion: Fix forward declarations of quaternion.

See https://github.com/boostorg/math/issues/99
This commit is contained in:
jzmaddock
2018-01-30 08:26:50 +00:00
parent b41743f466
commit 426db8d929
2 changed files with 1 additions and 9 deletions

View File

@@ -11,6 +11,7 @@
#define BOOST_QUATERNION_HPP
#include <boost/config.hpp> // for BOOST_NO_STD_LOCALE
#include <boost/math_fwd.hpp>
#include <boost/detail/workaround.hpp>
#include <boost/type_traits/is_convertible.hpp>
#include <boost/utility/enable_if.hpp>

View File

@@ -9,8 +9,6 @@
#ifndef BOOST_MATH_FWD_HPP
#define BOOST_MATH_FWD_HPP
#include <boost/cstdint.hpp>
namespace boost
{
namespace math
@@ -22,13 +20,6 @@ namespace math
template < typename T >
class quaternion;
template < >
class quaternion< float >;
template < >
class quaternion< double >;
template < >
class quaternion< long double >;
// Also has many function templates (including operators)