Skip to content
Snippets Groups Projects
Commit dc3e2f31 authored by Andreas Rauschert's avatar Andreas Rauschert
Browse files

Move using namespace units to namespace mantle_api


- using the namespace "units" globally creates a name clash of
units::inverse with the glm library's glm::inverse, which is used within
the glm library. glm lib doesn't compile anymore then
- moved "using namespace units;" to mantle_api namespace for now

Signed-off-by: default avatarAndreas Rauschert <andreas.rb.rauschert@bmw.de>
parent bb393c4f
No related branches found
No related tags found
1 merge request!22Move using namespace units to namespace mantle_api
......@@ -24,8 +24,6 @@
#include <tuple>
using namespace units;
namespace units
{
UNIT_ADD(jerk,
......@@ -58,6 +56,8 @@ UNIT_ADD_CATEGORY_TRAIT(jerk_acceleration)
namespace mantle_api
{
using namespace units;
template <typename T>
struct SplineSegment
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment