Skip to content
Snippets Groups Projects
Commit 489d835b authored by Rainer Kartmann's avatar Rainer Kartmann
Browse files

Merge branch 'master' into colors/ColorMap

parents 6972955a e8820799
No related branches found
No related tags found
No related merge requests found
......@@ -167,6 +167,7 @@ SET(INCLUDES
meta/has_member_macros/has_member.hpp
meta/EnumNames.hpp
meta/type_name.h
meta/boost_hana/has_hana_accessor.h
shapes/AxisAlignedBoundingBox.h
shapes/OrientedBoxBase.h
......
......@@ -2,5 +2,6 @@
// This file is generated!
#include "meta/boost_hana.h"
#include "meta/eigen.h"
#include "meta/type_name.h"
#pragma once
// This file is generated!
#include "boost_hana/has_hana_accessor.h"
#pragma once
#include <boost/hana.hpp>
namespace simox::meta
{
namespace hana = boost::hana;
template<class T>
static constexpr bool has_hana_accessor_v = !std::is_base_of_v<hana::default_, hana::accessors_impl<T>>;
template<class T, class T2>
using enable_if_has_hana_accessor_t = std::enable_if_t<has_hana_accessor_v<T>, T2>;
template<class T, class T2>
using enable_if_no_hana_accessor_t = std::enable_if_t<!has_hana_accessor_v<T>, T2>;
}
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