diff options
author | Rolland Dudemaine <rolland@ghs.com> | 2011-11-15 16:28:28 (GMT) |
---|---|---|
committer | Harald Fernengel <harald.fernengel@nokia.com> | 2011-11-15 16:28:28 (GMT) |
commit | 220ca59cc29148b998dd411500e6e9dc82218d2c (patch) | |
tree | 8a37d0878bf1b0cacfed97e0a47c7b48058e5023 /src/corelib | |
parent | 75c2d2fb2d29f33d85c801c68c1a8f823e4b8c3c (diff) | |
download | Qt-220ca59cc29148b998dd411500e6e9dc82218d2c.zip Qt-220ca59cc29148b998dd411500e6e9dc82218d2c.tar.gz Qt-220ca59cc29148b998dd411500e6e9dc82218d2c.tar.bz2 |
Use Q_FUNC_INFO without line number on GHS compiler.
Merge-request: 1438
Reviewed-by: Harald Fernengel <harald.fernengel@nokia.com>
Diffstat (limited to 'src/corelib')
-rw-r--r-- | src/corelib/global/qglobal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/corelib/global/qglobal.h b/src/corelib/global/qglobal.h index cfe5eea..e8c611b 100644 --- a/src/corelib/global/qglobal.h +++ b/src/corelib/global/qglobal.h @@ -1824,7 +1824,7 @@ inline T *q_check_ptr(T *p) { Q_CHECK_PTR(p); return p; } #elif defined(_MSC_VER) # define Q_FUNC_INFO __FUNCSIG__ #else -# if defined(Q_OS_SOLARIS) || defined(Q_CC_XLC) || defined(Q_OS_SYMBIAN) +# if defined(Q_OS_SOLARIS) || defined(Q_CC_XLC) || defined(Q_OS_SYMBIAN) || defined(Q_OS_INTEGRITY) # define Q_FUNC_INFO __FILE__ "(line number unavailable)" # else /* These two macros makes it possible to turn the builtin line expander into a |