diff options
author | Tor Lillqvist <tml@collabora.com> | 2014-07-08 02:16:01 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2014-07-08 02:37:34 +0300 |
commit | 7182db5a675d5e331281c536e15da5a82f87692e (patch) | |
tree | f05a7ab195e3982c4afc8377b9b09c012230ce1c /i18npool | |
parent | 771075301a1f3322657d47a77c24c4e16b71be51 (diff) |
Include <algorithm> for std::min() and max()
Change-Id: I6a46e6466ab56aea14e16902cb51f9c3f088f30e
Diffstat (limited to 'i18npool')
-rw-r--r-- | i18npool/source/calendar/calendar_gregorian.cxx | 1 | ||||
-rw-r--r-- | i18npool/source/localedata/LocaleNode.cxx | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/i18npool/source/calendar/calendar_gregorian.cxx b/i18npool/source/calendar/calendar_gregorian.cxx index 1722a48e8152..ee9084433462 100644 --- a/i18npool/source/calendar/calendar_gregorian.cxx +++ b/i18npool/source/calendar/calendar_gregorian.cxx @@ -17,6 +17,7 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ +#include <algorithm> #include "calendar_gregorian.hxx" #include "localedata.hxx" diff --git a/i18npool/source/localedata/LocaleNode.cxx b/i18npool/source/localedata/LocaleNode.cxx index 58bce7faf655..6f72cc2c1601 100644 --- a/i18npool/source/localedata/LocaleNode.cxx +++ b/i18npool/source/localedata/LocaleNode.cxx @@ -20,6 +20,7 @@ #include <stdio.h> #include <stdlib.h> #include <string.h> +#include <algorithm> #include <iostream> #include <set> #include <vector> |