Browse Source

#include <cstring> instead of <cstdlib> for std::memset (fixes build with g++ 4.3).

git-svn-id: file:///var/svn/tigccpp/trunk@1249 9552661e-59e3-4036-b4f2-dbe53926924f
kevinkofler 16 years ago
parent
commit
38d6ab4dc1
2 changed files with 3 additions and 2 deletions
  1. 2 1
      ktigcc/NEWS
  2. 1 1
      ktigcc/callbacks.cpp

+ 2 - 1
ktigcc/NEWS

@@ -1,6 +1,6 @@
 This is a summary of the changes in KTIGCC since the first alpha release:
 
-CVS HEAD (2008-01-15):
+CVS HEAD (2008-05-01):
 
 * Added a full changelog (generated from CVS logs).
 * Fixed stray indentation at the end of the line when autoclosing a curly brace
@@ -34,6 +34,7 @@ CVS HEAD (2008-01-15):
 * Fixed infinite loop when parsing user headers including each other for
   completion information.
 * Made the Errors and Warnings pane non-detachable.
+* Fixed the compilation with GCC 4.3.
 
 
 KTIGCC 1.06 (2006-11-25):

+ 1 - 1
ktigcc/callbacks.cpp

@@ -19,7 +19,7 @@
 */
 
 #include "callbacks.h"
-#include <cstdlib>
+#include <cstring>
 #include <kprogressdialog.h>
 #include <ticalcs.h>
 #include <QApplication>