Add "static" to the Windows ALWAYS_INLINE macro (similar to what we do on POSIX)

llvm-svn: 178296
This commit is contained in:
Timur Iskhodzhanov 2013-03-28 22:07:28 +00:00
parent cd58d1176f
commit e3164e9647
1 changed files with 1 additions and 1 deletions

View File

@ -115,7 +115,7 @@ using namespace __sanitizer; // NOLINT
// Platform-specific defs.
#if defined(_MSC_VER)
# define ALWAYS_INLINE __forceinline
# define ALWAYS_INLINE static __forceinline
// FIXME(timurrrr): do we need this on Windows?
# define ALIAS(x)
# define ALIGNED(x) __declspec(align(x))