aboutsummaryrefslogtreecommitdiffstats
path: root/modules
diff options
context:
space:
mode:
authorlloyd <[email protected]>2006-06-23 09:53:49 +0000
committerlloyd <[email protected]>2006-06-23 09:53:49 +0000
commit1f8876b95d4b0af1c06b09eccdf175deea8c52f1 (patch)
treed05a6d05bf71222905c3f9e792c870c7cba70980 /modules
parent5991f942095bbb1c88feb5df8d8a4b05ce09be8a (diff)
Was missing an include for <algorithm>, needed for using std::sort;
most compilers didn't mind but gcc 2.95 on Linux/alpha complained.
Diffstat (limited to 'modules')
-rw-r--r--modules/es_unix/es_unix.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/es_unix/es_unix.cpp b/modules/es_unix/es_unix.cpp
index d1efd4fa9..87a7bb9a7 100644
--- a/modules/es_unix/es_unix.cpp
+++ b/modules/es_unix/es_unix.cpp
@@ -7,6 +7,7 @@
#include <botan/unix_cmd.h>
#include <botan/parsing.h>
#include <botan/conf.h>
+#include <algorithm>
namespace Botan {