mirror of
https://github.com/bolero-MURAKAMI/Sprout
synced 2025-08-03 12:49:50 +00:00
fix for VC++11
This commit is contained in:
parent
5597dcec9b
commit
8b80b159c8
148 changed files with 336 additions and 181 deletions
|
@ -44,7 +44,7 @@ namespace sprout {
|
|||
return *this;
|
||||
}
|
||||
private:
|
||||
arg& operator=(arg const&) = delete;
|
||||
arg& operator=(arg const&) SPROUT_DELETED_FUNCTION_DECL
|
||||
};
|
||||
template<typename T>
|
||||
struct arg<T&> {
|
||||
|
@ -63,7 +63,7 @@ namespace sprout {
|
|||
return *this;
|
||||
}
|
||||
private:
|
||||
arg& operator=(arg const&) = delete;
|
||||
arg& operator=(arg const&) SPROUT_DELETED_FUNCTION_DECL
|
||||
};
|
||||
|
||||
template<typename T, typename Void = void>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue