gnash-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Gnash-commit] gnash ChangeLog libbase/container.h libbase/log...


From: Benjamin Wolsey
Subject: [Gnash-commit] gnash ChangeLog libbase/container.h libbase/log...
Date: Fri, 28 Mar 2008 10:32:28 +0000

CVSROOT:        /sources/gnash
Module name:    gnash
Changes by:     Benjamin Wolsey <bwy>   08/03/28 10:32:28

Modified files:
        .              : ChangeLog 
        libbase        : container.h log.cpp 

Log message:
        Comments, header cleanups.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnash/ChangeLog?cvsroot=gnash&r1=1.6053&r2=1.6054
http://cvs.savannah.gnu.org/viewcvs/gnash/libbase/container.h?cvsroot=gnash&r1=1.62&r2=1.63
http://cvs.savannah.gnu.org/viewcvs/gnash/libbase/log.cpp?cvsroot=gnash&r1=1.69&r2=1.70

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/gnash/gnash/ChangeLog,v
retrieving revision 1.6053
retrieving revision 1.6054
diff -u -b -r1.6053 -r1.6054
--- ChangeLog   28 Mar 2008 10:26:25 -0000      1.6053
+++ ChangeLog   28 Mar 2008 10:32:27 -0000      1.6054
@@ -1,5 +1,10 @@
 2008-03-28 Benjamin Wolsey <address@hidden>
 
+       * libbase/log.cpp: comment headers, minor alterations.
+       * libbase/container.h: drop tu_config.h include.
+
+2008-03-28 Benjamin Wolsey <address@hidden>
+
        * po/cs.po: add Petr Pisar's updated Czech translation.
 
 2008-03-28 Benjamin Wolsey <address@hidden>

Index: libbase/container.h
===================================================================
RCS file: /sources/gnash/gnash/libbase/container.h,v
retrieving revision 1.62
retrieving revision 1.63
diff -u -b -r1.62 -r1.63
--- libbase/container.h 5 Mar 2008 03:55:52 -0000       1.62
+++ libbase/container.h 28 Mar 2008 10:32:27 -0000      1.63
@@ -23,8 +23,6 @@
 #include "gnashconfig.h"
 #endif
 
-#include "tu_config.h"
-
 #ifdef HAVE_STRINGCASECMP
 # define STRCASECMP strcasecmp
 #else
@@ -57,7 +55,6 @@
 
 #endif // ! HAVE_WINSOCK_H
 
-//#include "tu_config.h"
 #include "utility.h"
 #include <cstddef>
 #include <cstring>     // for strcmp and friends

Index: libbase/log.cpp
===================================================================
RCS file: /sources/gnash/gnash/libbase/log.cpp,v
retrieving revision 1.69
retrieving revision 1.70
diff -u -b -r1.69 -r1.70
--- libbase/log.cpp     26 Mar 2008 21:27:30 -0000      1.69
+++ libbase/log.cpp     28 Mar 2008 10:32:28 -0000      1.70
@@ -22,12 +22,10 @@
 #endif
 
 #include <ctime>
-#include <cctype>
+#include <cctype> // for isprint
 
-#include <iostream>
-#include <sstream>
-#include <iomanip>
-#include <fstream>
+#include <iosfwd> // ostream, fstream, sstream
+#include <iomanip> // for std::setfill
 #include <string>
 #include <boost/format.hpp>
 
@@ -37,7 +35,7 @@
 # include <sys/types.h>
 #endif
 
-#include <unistd.h>
+#include <unistd.h> // for getpid
 
 #include "log.h"
 
@@ -47,7 +45,8 @@
 namespace gnash {
 
 // Convert each byte into its hex representation
-std::string hexify (const unsigned char *p, size_t length, bool ascii)
+std::string
+hexify (const unsigned char *p, size_t length, bool ascii)
 {
 
        const std::vector<unsigned char> bytes (p, p + length);




reply via email to

[Prev in Thread] Current Thread [Next in Thread]