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:
@@ -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>
|
||||
|
||||
@@ -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)
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user