Add Q_DECL_RESTRICT and Q_ALWAYS_INLINE for MSVC

Change-Id: I598463e5990e91a5a049d1f9f7a4aa80930c0904
Reviewed-by: Samuel Rødal <samuel.rodal@digia.com>
bb10
Thiago Macieira 2011-12-29 20:05:04 -02:00 committed by The Qt Project
parent f9f0f4aea5
commit 2d98bd48e5
1 changed files with 4 additions and 0 deletions

View File

@ -76,6 +76,10 @@ QT_BEGIN_NAMESPACE
# define Q_STATIC_TEMPLATE_FUNCTION static
# define Q_ALWAYS_INLINE inline __attribute__((always_inline))
# define Q_DECL_RESTRICT __restrict__
#elif defined(Q_CC_MSVC)
# define Q_STATIC_TEMPLATE_FUNCTION static
# define Q_ALWAYS_INLINE __forceinline
# define Q_DECL_RESTRICT __restrict
#else
# define Q_STATIC_TEMPLATE_FUNCTION static
# define Q_ALWAYS_INLINE inline