diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | src/gui/widgets/tab.cpp | 2 | ||||
-rw-r--r-- | src/utils/sha256.cpp | 1 |
3 files changed, 8 insertions, 0 deletions
@@ -1,3 +1,8 @@ +2008-05-22 Roderic Morris <roderic@ccs.neu.edu> + + * src/gui/widgets/tab.cpp, src/utils/sha256.cpp: Fix compile errors + when compiling with GCC 4.3. + 2008-05-20 Bjørn Lindeijer <bjorn@lindeijer.nl> * INSTALL: Mention Subversion instead of CVS. diff --git a/src/gui/widgets/tab.cpp b/src/gui/widgets/tab.cpp index 4bb85946..990c6a95 100644 --- a/src/gui/widgets/tab.cpp +++ b/src/gui/widgets/tab.cpp @@ -21,6 +21,8 @@ * $Id$ */ +#include <algorithm> + #include "tab.h" #include "tabbedarea.h" diff --git a/src/utils/sha256.cpp b/src/utils/sha256.cpp index 0cedcc89..209d4f96 100644 --- a/src/utils/sha256.cpp +++ b/src/utils/sha256.cpp @@ -71,6 +71,7 @@ */ #include "sha256.h" +#include <memory.h> #ifdef HAS_STDINT #include <stdint.h> |