mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Backed out changeset 9cdd168a8518 (bug 904108) because it includes an unreliable Clang marketing version check
This commit is contained in:
parent
477c24d934
commit
aa4a01053a
@ -906,17 +906,6 @@ class Value
|
||||
Value(const Value& v) = default;
|
||||
#endif
|
||||
|
||||
/*
|
||||
* clang 4.1 doesn't corectly create a default assignment operator
|
||||
* for this class, so we need to explicitly declare one.
|
||||
*/
|
||||
#if defined(__clang__) && (__clang_major__ == 4) && (__clang_minor__ <= 1)
|
||||
Value &operator=(const Value &r) {
|
||||
data = r.data;
|
||||
return *this;
|
||||
}
|
||||
#endif
|
||||
|
||||
/*** Mutators ***/
|
||||
|
||||
void setNull() {
|
||||
|
Loading…
Reference in New Issue
Block a user