Fixed warnings for unused variables in Visual Studio.

Change-Id: I51eeed20c3e0a4914280bf33585ca03b9a9952aa
Tested: on Windows.
This commit is contained in:
Wouter van Oortmerssen 2014-08-20 11:25:58 -07:00
parent c2ba7fd251
commit f7b0d130b6
1 changed files with 2 additions and 0 deletions

View File

@ -54,9 +54,11 @@ int main(int /*argc*/, const char * /*argv*/[]) {
auto pos = monster->pos();
assert(pos);
assert(pos->z() == 3);
(void)pos;
auto inv = monster->inventory();
assert(inv);
assert(inv->Get(9) == 9);
(void)inv;
}