mirror of
https://github.com/boostorg/geometry.git
synced 2026-02-13 00:22:10 +00:00
check_result_type is missing inline qualifier
Function check_result_type is missing inline qualifier.
This commit is contained in:
@@ -37,13 +37,13 @@ namespace boost { namespace geometry {
|
||||
#ifndef DOXYGEN_NO_DETAIL
|
||||
namespace detail { namespace within {
|
||||
|
||||
int check_result_type(int result)
|
||||
inline int check_result_type(int result)
|
||||
{
|
||||
return result;
|
||||
}
|
||||
|
||||
template <typename T>
|
||||
void check_result_type(T result)
|
||||
inline void check_result_type(T result)
|
||||
{
|
||||
BOOST_ASSERT(false);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user