From: James Turner Date: Tue, 14 Jun 2016 14:13:58 +0000 (+0100) Subject: Fix Untar namespacing. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=567e8f758e16d2127a72de439d23f0e281ea9ee1;p=simgear.git Fix Untar namespacing. --- diff --git a/simgear/io/untar.cxx b/simgear/io/untar.cxx index 14ba27ce..c2e55b92 100644 --- a/simgear/io/untar.cxx +++ b/simgear/io/untar.cxx @@ -34,12 +34,9 @@ namespace simgear { -namespace pkg -{ - - const int ZLIB_DECOMPRESS_BUFFER_SIZE = 32 * 1024; - const int ZLIB_INFLATE_WINDOW_BITS = MAX_WBITS; - const int ZLIB_DECODE_GZIP_HEADER = 16; +const int ZLIB_DECOMPRESS_BUFFER_SIZE = 32 * 1024; +const int ZLIB_INFLATE_WINDOW_BITS = MAX_WBITS; +const int ZLIB_DECODE_GZIP_HEADER = 16; /* tar Header Block, from POSIX 1003.1-1990. */ @@ -344,6 +341,4 @@ bool TarExtractor::hasError() const return (d->state >= TarExtractorPrivate::ERROR_STATE); } -} // of pkg - } // of simgear diff --git a/simgear/io/untar.hxx b/simgear/io/untar.hxx index 0b653a67..b14da6ff 100644 --- a/simgear/io/untar.hxx +++ b/simgear/io/untar.hxx @@ -15,8 +15,8 @@ // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. // -#ifndef SG_PKG_UNTAR_HXX -#define SG_PKG_UNTAR_HXX +#ifndef SG_IO_UNTAR_HXX +#define SG_IO_UNTAR_HXX #include @@ -25,9 +25,6 @@ namespace simgear { -namespace pkg -{ - class TarExtractorPrivate; class TarExtractor @@ -46,8 +43,6 @@ private: std::auto_ptr d; }; -} // of namespace pkg - } // of namespace simgear -#endif +#endif // of SG_IO_UNTAR_HXX