diff options
author | Michael Meeks <michael.meeks@suse.com> | 2012-02-14 14:14:38 +0000 |
---|---|---|
committer | Michael Meeks <michael.meeks@suse.com> | 2012-02-14 14:15:52 +0000 |
commit | 3e41d0bf6a8d77ffa30889cf8b7ebdb5c7910792 (patch) | |
tree | df96b5d00dfb7f27717bee858bb56a04f13d1e6c /sal | |
parent | 84d21e4de26bd69f7ca5b10f2c72779f07e11347 (diff) |
cleanup: remove remenants of gcc version checking
Diffstat (limited to 'sal')
-rw-r--r-- | sal/inc/sal/config.h | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/sal/inc/sal/config.h b/sal/inc/sal/config.h index e4ed257e4a3f..aee8e829067b 100644 --- a/sal/inc/sal/config.h +++ b/sal/inc/sal/config.h @@ -116,18 +116,6 @@ #define sun sun #endif -/* This is to work around a gcc 3.3 error that fixing actually breaks other - * compilers. This will create a dummy variable specifically for gcc 3.3 that - * allows it to compile and not break the others. Other compilers may follow - * with this eror later. */ -#if defined __GNUC__ -#if ((__GNUC__ == 3) && (__GNUC_MINOR__ > 2)) -# define SAL_ISO_CONST const -#else -# define SAL_ISO_CONST -#endif -#endif - #endif /*_SAL_CONFIG_H_ */ |