Suppress unused variable warning in release builds (#611)

This commit is contained in:
Antony Polukhin
2018-09-03 18:37:47 +03:00
committed by Jesse Beder
parent 5e79f5eed3
commit b71e672caf

View File

@@ -28,6 +28,7 @@ class CollectionStack {
}
void PopCollectionType(CollectionType::value type) {
assert(type == GetCurCollectionType());
(void)type;
collectionStack.pop();
}