Commit 3e8cb115 authored by Chad Austin's avatar Chad Austin Committed by Facebook Github Bot

fix warnings in Demangle.cpp

Summary: Fix unused-argument warnings.

Reviewed By: yfeldblum

Differential Revision: D15068741

fbshipit-source-id: 486451bd9bd8575bed8a647f4531783c82c079b5
parent 5fc38975
......@@ -37,6 +37,9 @@ int cplus_demangle_v3_callback_wrapper(
auto const options = DMGL_PARAMS | DMGL_ANSI | DMGL_TYPES;
return cplus_demangle_v3_callback(mangled, options, cbref, opaque);
#else
(void)mangled;
(void)cbref;
(void)opaque;
return 0;
#endif
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment