Summary:
Titled.
```
mcrouter/lib/carbon/CarbonProtocolReader.h:143:49: required from here
folly/small_vector.h:441:38: error: enumeral and non-enumeral type in conditional expression [-Werror]
cc1plus: all warnings being treated as errors
```
Reviewed By: yfeldblum
Differential Revision:
D3763073
fbshipit-source-id:
da490e91cdb12dacf37d71c1796239bdc361a31b
}
static constexpr size_type max_size() {
- return !BaseType::kShouldUseHeap ? MaxInline
+ return !BaseType::kShouldUseHeap ? static_cast<size_type>(MaxInline)
: BaseType::policyMaxSize();
}