mirror of
https://github.com/RPCS3/cereal.git
synced 2024-11-23 11:19:41 +00:00
removing unnecessary const
This commit is contained in:
parent
4bc8dada80
commit
074ab07bfe
@ -615,7 +615,7 @@ namespace cereal
|
|||||||
|
|
||||||
//! only allow conversion if the types are the same and we are converting into a const reference
|
//! only allow conversion if the types are the same and we are converting into a const reference
|
||||||
template <class Dest, class = typename std::enable_if<std::is_same<Source, Dest>::value>::type>
|
template <class Dest, class = typename std::enable_if<std::is_same<Source, Dest>::value>::type>
|
||||||
operator Dest const & () const;
|
operator Dest const & ();
|
||||||
};
|
};
|
||||||
|
|
||||||
//! A struct that prevents implicit conversion
|
//! A struct that prevents implicit conversion
|
||||||
|
Loading…
Reference in New Issue
Block a user