зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1270805 - add default constructor for TypeAndValue<Nothing>. r=jandem
MozReview-Commit-ID: HqSkqzYGIGc --HG-- extra : rebase_source : a3f210cf6d07e7930ce5ea4d1f9d2262c733d282
This commit is contained in:
Родитель
03b633450d
Коммит
d41a025aab
|
@ -172,12 +172,12 @@ class TypeAndValue
|
|||
|
||||
// Specialization for when there is no additional data needed.
|
||||
template <>
|
||||
struct TypeAndValue<Nothing>
|
||||
class TypeAndValue<Nothing>
|
||||
{
|
||||
ExprType type_;
|
||||
|
||||
public:
|
||||
TypeAndValue() {}
|
||||
TypeAndValue() = default;
|
||||
explicit TypeAndValue(ExprType type) : type_(type) {}
|
||||
|
||||
TypeAndValue(ExprType type, Nothing value)
|
||||
|
|
Загрузка…
Ссылка в новой задаче