substantially. Next problem is: cc1: warnings being treated as errors config.c: In function 'enter_chn': config.c:636:21: error: array subscript is above array bounds config.c:637:21: error: array subscript is above array bounds
18 lines
487 B
Text
18 lines
487 B
Text
$NetBSD: patch-common_video_iso-mpeg4_include_bitstrm_hpp,v 1.1 2011/12/22 14:44:42 dholland Exp $
|
|
|
|
Fix C++ headers.
|
|
|
|
--- common/video/iso-mpeg4/include/bitstrm.hpp~ 2005-09-08 22:02:55.000000000 +0000
|
|
+++ common/video/iso-mpeg4/include/bitstrm.hpp
|
|
@@ -45,8 +45,9 @@ Revision History:
|
|
#ifndef _BITSTREAM_HPP_
|
|
#define _BITSTREAM_HPP_
|
|
#include "inbits.h"
|
|
-#include <istream.h>
|
|
-#include <ostream.h>
|
|
+#include <istream>
|
|
+#include <ostream>
|
|
+using namespace std;
|
|
|
|
class CIOBitStream
|
|
{
|