Fix compile issue for compiler without cpp11
This commit is contained in:
parent
5f1eb20568
commit
4ed7a7f746
@ -284,8 +284,8 @@ namespace pugi {
|
||||
bool value;
|
||||
operator bool() const { return value; }
|
||||
};
|
||||
static const boolean true_value{ true };
|
||||
static const boolean false_value{ false };
|
||||
static const boolean true_value(true);
|
||||
static const boolean false_value(false);
|
||||
} // namespace pugi
|
||||
|
||||
namespace pugi
|
||||
|
||||
Loading…
Reference in New Issue
Block a user