Remove the extra semicolon reported by the buildbot.

llvm-svn: 161954
This commit is contained in:
Alexander Potapenko 2012-08-15 15:59:18 +00:00
parent 954fc8c3e4
commit cfb2a6b074
1 changed files with 1 additions and 1 deletions

View File

@ -73,7 +73,7 @@ using __sanitizer::uptr;
#define DECLARE_FUNCTION_AND_WRAPPER(ret_type, func, ...) \
ret_type func(__VA_ARGS__); \
ret_type WRAP(func)(__VA_ARGS__);
ret_type WRAP(func)(__VA_ARGS__)
// Use extern declarations of intercepted functions on Mac and Windows
// to avoid including system headers.