diff options
author | Herbert Dürr <hdu@apache.org> | 2013-05-27 15:46:35 +0000 |
---|---|---|
committer | Herbert Dürr <hdu@apache.org> | 2013-05-27 15:46:35 +0000 |
commit | 1f68b968b8cb93cbde556dcc3ed6c2a40b5242ff (patch) | |
tree | b821761571be89ef733ae0dada35294df00a1db2 /chart2 | |
parent | 08159967126946849906827ceadd802053d132c0 (diff) |
#i122208# include <algorithm> explicitly if functions from <algorithm> are used
most STLs include relevant parts of it indirectly, but
one can not depend on it (seen with MSVC's tr1 headers)
Notes
Notes:
prefer: 134458aa8d8bb49d3ef77c89eac7fdf505623985
Diffstat (limited to 'chart2')
-rw-r--r-- | chart2/source/tools/InternalData.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/chart2/source/tools/InternalData.cxx b/chart2/source/tools/InternalData.cxx index b23f0bae48ae..5008c0ec8a95 100644 --- a/chart2/source/tools/InternalData.cxx +++ b/chart2/source/tools/InternalData.cxx @@ -30,6 +30,7 @@ #include "macros.hxx" #include <rtl/math.hxx> +#include <algorithm> using ::com::sun::star::uno::Sequence; using ::rtl::OUString; |