mirror of
https://github.com/tristanpenman/valijson.git
synced 2025-01-19 08:46:42 +01:00
Merge pull request #123 from anishmonachan7/fix_unused_variable
fix unused variable error with gcc 8.3
This commit is contained in:
commit
70f12ed1d4
@ -914,6 +914,9 @@ public:
|
|||||||
freeFn(ptr);
|
freeFn(ptr);
|
||||||
throw;
|
throw;
|
||||||
}
|
}
|
||||||
|
#else
|
||||||
|
// pretend to use freeFn to avoid warning in GCC 8.3
|
||||||
|
(void)freeFn;
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user