| Index: src/type-hints.h
|
| diff --git a/src/type-hints.h b/src/type-hints.h
|
| index da467d258500fe3486d8a696fec06091bedb9551..e2ea0b4e96f506a46fcf011e41ff2d2d6c447227 100644
|
| --- a/src/type-hints.h
|
| +++ b/src/type-hints.h
|
| @@ -62,10 +62,12 @@ enum class ToBooleanHint : uint16_t {
|
| };
|
|
|
| std::ostream& operator<<(std::ostream&, ToBooleanHint);
|
| +std::string ToString(ToBooleanHint);
|
|
|
| typedef base::Flags<ToBooleanHint, uint16_t> ToBooleanHints;
|
|
|
| std::ostream& operator<<(std::ostream&, ToBooleanHints);
|
| +std::string ToString(ToBooleanHints);
|
|
|
| DEFINE_OPERATORS_FOR_FLAGS(ToBooleanHints)
|
|
|
|
|