[sancov] Move __sancov_default_options declaration outside the namespace __sancov

After this commint, we can include sancov_flags.h and refer to
__sancov_default_options without requiring the namespace prefix.

Differential Revision: https://reviews.llvm.org/D29167

llvm-svn: 293731
This commit is contained in:
Marcos Pividori 2017-02-01 01:36:19 +00:00
parent 8d115a384c
commit e72c69bb0a
1 changed files with 2 additions and 2 deletions

View File

@ -32,9 +32,9 @@ inline SancovFlags* sancov_flags() { return &sancov_flags_dont_use_directly; }
void InitializeSancovFlags();
} // namespace __sancov
extern "C" SANITIZER_INTERFACE_ATTRIBUTE SANITIZER_WEAK_ATTRIBUTE const char*
__sancov_default_options();
} // namespace __sancov
#endif