Skip to content
Snippets Groups Projects
Commit b71e672c authored by Antony Polukhin's avatar Antony Polukhin Committed by Jesse Beder
Browse files

Suppress unused variable warning in release builds (#611)

parent 5e79f5ee
No related branches found
No related tags found
No related merge requests found
......@@ -28,6 +28,7 @@ class CollectionStack {
}
void PopCollectionType(CollectionType::value type) {
assert(type == GetCurCollectionType());
(void)type;
collectionStack.pop();
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment