[haiku-commits] r38138 - haiku/trunk/src/apps/terminal

  • From: superstippi@xxxxxx
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Mon, 16 Aug 2010 12:32:44 +0200 (CEST)

Author: stippi
Date: 2010-08-16 12:32:44 +0200 (Mon, 16 Aug 2010)
New Revision: 38138
Changeset: http://dev.haiku-os.org/changeset/38138

Modified:
   haiku/trunk/src/apps/terminal/Jamfile
   haiku/trunk/src/apps/terminal/Shell.cpp
Log:
A better fix than r38136: Remove the useless iostream include from Shell.cpp,
perhaps a left-over from debugging output? Thanks to Axel for reviewing.


Modified: haiku/trunk/src/apps/terminal/Jamfile
===================================================================
--- haiku/trunk/src/apps/terminal/Jamfile       2010-08-16 10:19:02 UTC (rev 
38137)
+++ haiku/trunk/src/apps/terminal/Jamfile       2010-08-16 10:32:44 UTC (rev 
38138)
@@ -28,7 +28,6 @@
        VTKeyTbl.c
        VTPrsTbl.c
        : be $(HAIKU_LOCALE_LIBS) tracker textencoding $(TARGET_LIBSUPC++)
-               $(TARGET_LIBSTDC++)
        : Terminal.rdef
 ;
 

Modified: haiku/trunk/src/apps/terminal/Shell.cpp
===================================================================
--- haiku/trunk/src/apps/terminal/Shell.cpp     2010-08-16 10:19:02 UTC (rev 
38137)
+++ haiku/trunk/src/apps/terminal/Shell.cpp     2010-08-16 10:32:44 UTC (rev 
38138)
@@ -14,7 +14,6 @@
 #include <dirent.h>
 #include <errno.h>
 #include <fcntl.h>
-#include <iostream>
 #include <new>
 #include <signal.h>
 #include <string.h>


Other related posts:

  • » [haiku-commits] r38138 - haiku/trunk/src/apps/terminal - superstippi