Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
dlib
Commits
1184e938
Commit
1184e938
authored
Apr 19, 2018
by
Alexis Tsogias
Committed by
Davis E. King
Apr 19, 2018
Browse files
Renamed BOOST_JOIN to DLIB_BOOST_JOIN to prevent name clashes when working with boost (#1265)
parent
52322e5a
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
11 deletions
+12
-11
dlib/assert.h
dlib/assert.h
+10
-9
dlib/matrix/matrix_assign.h
dlib/matrix/matrix_assign.h
+2
-2
No files found.
dlib/assert.h
View file @
1184e938
...
@@ -20,10 +20,11 @@
...
@@ -20,10 +20,11 @@
// (C) Copyright Gennaro Prota 2003.
// (C) Copyright Gennaro Prota 2003.
// (C) Copyright Eric Friedman 2003.
// (C) Copyright Eric Friedman 2003.
// License: Boost Software License See LICENSE.txt for the full license.
// License: Boost Software License See LICENSE.txt for the full license.
#ifndef BOOST_JOIN
//
#define BOOST_JOIN( X, Y ) BOOST_DO_JOIN( X, Y )
#ifndef DLIB_BOOST_JOIN
#define BOOST_DO_JOIN( X, Y ) BOOST_DO_JOIN2(X,Y)
#define DLIB_BOOST_JOIN( X, Y ) DLIB_BOOST_DO_JOIN( X, Y )
#define BOOST_DO_JOIN2( X, Y ) X##Y
#define DLIB_BOOST_DO_JOIN( X, Y ) DLIB_BOOST_DO_JOIN2(X,Y)
#define DLIB_BOOST_DO_JOIN2( X, Y ) X##Y
#endif
#endif
// figure out if the compiler has rvalue references.
// figure out if the compiler has rvalue references.
...
@@ -99,13 +100,13 @@ namespace dlib
...
@@ -99,13 +100,13 @@ namespace dlib
#define ASSERT_ARE_NOT_SAME_TYPE(type1, type2) static_assert(!::dlib::assert_types_match<type1,type2>::value, "These types should NOT be the same.")
#define ASSERT_ARE_NOT_SAME_TYPE(type1, type2) static_assert(!::dlib::assert_types_match<type1,type2>::value, "These types should NOT be the same.")
#else
#else
#define COMPILE_TIME_ASSERT(expression) \
#define COMPILE_TIME_ASSERT(expression) \
DLIB_NO_WARN_UNUSED typedef char BOOST_JOIN(DLIB_CTA, __LINE__)[::dlib::compile_time_assert<(bool)(expression)>::value]
DLIB_NO_WARN_UNUSED typedef char
DLIB_
BOOST_JOIN(DLIB_CTA, __LINE__)[::dlib::compile_time_assert<(bool)(expression)>::value]
#define ASSERT_ARE_SAME_TYPE(type1, type2) \
#define ASSERT_ARE_SAME_TYPE(type1, type2) \
DLIB_NO_WARN_UNUSED typedef char BOOST_JOIN(DLIB_AAST, __LINE__)[::dlib::assert_are_same_type<type1,type2>::value]
DLIB_NO_WARN_UNUSED typedef char
DLIB_
BOOST_JOIN(DLIB_AAST, __LINE__)[::dlib::assert_are_same_type<type1,type2>::value]
#define ASSERT_ARE_NOT_SAME_TYPE(type1, type2) \
#define ASSERT_ARE_NOT_SAME_TYPE(type1, type2) \
DLIB_NO_WARN_UNUSED typedef char BOOST_JOIN(DLIB_AANST, __LINE__)[::dlib::assert_are_not_same_type<type1,type2>::value]
DLIB_NO_WARN_UNUSED typedef char
DLIB_
BOOST_JOIN(DLIB_AANST, __LINE__)[::dlib::assert_are_not_same_type<type1,type2>::value]
#endif
#endif
// -----------------------------
// -----------------------------
...
@@ -187,8 +188,8 @@ namespace dlib
...
@@ -187,8 +188,8 @@ namespace dlib
!*/
!*/
// Use the fact that in C++03 you can't put non-PODs into a union.
// Use the fact that in C++03 you can't put non-PODs into a union.
#define DLIB_ASSERT_HAS_STANDARD_LAYOUT(type) \
#define DLIB_ASSERT_HAS_STANDARD_LAYOUT(type) \
union BOOST_JOIN(DAHSL_,__LINE__) { type TYPE_NOT_STANDARD_LAYOUT; }; \
union
DLIB_
BOOST_JOIN(DAHSL_,__LINE__) { type TYPE_NOT_STANDARD_LAYOUT; }; \
DLIB_NO_WARN_UNUSED typedef char BOOST_JOIN(DAHSL2_,__LINE__)[sizeof(BOOST_JOIN(DAHSL_,__LINE__))];
DLIB_NO_WARN_UNUSED typedef char
DLIB_
BOOST_JOIN(DAHSL2_,__LINE__)[sizeof(
DLIB_
BOOST_JOIN(DAHSL_,__LINE__))];
// ----------------------------------------------------------------------------------------
// ----------------------------------------------------------------------------------------
// ----------------------------------------------------------------------------------------
// ----------------------------------------------------------------------------------------
...
...
dlib/matrix/matrix_assign.h
View file @
1184e938
...
@@ -372,12 +372,12 @@ namespace dlib
...
@@ -372,12 +372,12 @@ namespace dlib
// This is a macro to help us add overloads for the matrix_assign_blas_helper template.
// This is a macro to help us add overloads for the matrix_assign_blas_helper template.
// Using this macro it is easy to add overloads for arbitrary matrix expressions.
// Using this macro it is easy to add overloads for arbitrary matrix expressions.
#define DLIB_ADD_BLAS_BINDING(src_expression) \
#define DLIB_ADD_BLAS_BINDING(src_expression) \
template <typename T, typename L> struct BOOST_JOIN(blas,__LINE__) \
template <typename T, typename L> struct
DLIB_
BOOST_JOIN(blas,__LINE__) \
{ const static bool value = sizeof(yes_type) == sizeof(test<T,L>(src_expression)); }; \
{ const static bool value = sizeof(yes_type) == sizeof(test<T,L>(src_expression)); }; \
\
\
template < typename dest_exp, typename src_exp > \
template < typename dest_exp, typename src_exp > \
struct matrix_assign_blas_helper<dest_exp, src_exp, \
struct matrix_assign_blas_helper<dest_exp, src_exp, \
typename enable_if<BOOST_JOIN(blas,__LINE__)<src_exp,typename dest_exp::layout_type> >::type > { \
typename enable_if<
DLIB_
BOOST_JOIN(blas,__LINE__)<src_exp,typename dest_exp::layout_type> >::type > { \
static void assign ( \
static void assign ( \
dest_exp& dest, \
dest_exp& dest, \
const src_exp& src, \
const src_exp& src, \
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment