mirror of
https://github.com/mat007/turtle.git
synced 2026-06-22 12:13:43 +00:00
Removed is_comparable which is sometimes ambiguous
git-svn-id: https://svn.code.sf.net/p/turtle/code/trunk@250 860be788-9bd5-4423-9f1e-828f051e677b
This commit is contained in:
parent
cf221b928f
commit
39ccffb881
4 changed files with 4 additions and 18 deletions
|
|
@ -335,7 +335,7 @@ namespace
|
|||
|
||||
struct custom_argument
|
||||
{
|
||||
friend std::ostream& operator<<( std::ostream& s, const custom_argument& )
|
||||
friend std::ostream& operator<<( std::ostream& s, custom_argument )
|
||||
{
|
||||
serialized = true;
|
||||
return s;
|
||||
|
|
@ -344,11 +344,11 @@ namespace
|
|||
struct custom_constraint
|
||||
{
|
||||
template< typename Actual >
|
||||
bool operator()( Actual ) const
|
||||
friend bool operator==( Actual, custom_constraint )
|
||||
{
|
||||
return true;
|
||||
}
|
||||
friend std::ostream& operator<<( std::ostream& s, const custom_constraint& )
|
||||
friend std::ostream& operator<<( std::ostream& s, custom_constraint )
|
||||
{
|
||||
serialized = true;
|
||||
return s;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue