Bug 1270805 - add default constructor for TypeAndValue<Nothing>. r=jandem

MozReview-Commit-ID: HqSkqzYGIGc

--HG--
extra : rebase_source : a3f210cf6d07e7930ce5ea4d1f9d2262c733d282
This commit is contained in:
Andi-Bogdan Postelnicu 2016-05-06 14:36:47 +03:00
Родитель 03b633450d
Коммит d41a025aab
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -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)