You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@avro.apache.org by sb...@apache.org on 2009/11/12 03:17:20 UTC

svn commit: r835194 - in /hadoop/avro/trunk: CHANGES.txt src/c++/api/InputStreamer.hh src/c++/api/OutputStreamer.hh src/c++/api/Validator.hh

Author: sbanacho
Date: Thu Nov 12 02:17:08 2009
New Revision: 835194

URL: http://svn.apache.org/viewvc?rev=835194&view=rev
Log:
AVRO-191. Explicitly include stdint.h for C++. (Contributed by cutting).

Modified:
    hadoop/avro/trunk/CHANGES.txt
    hadoop/avro/trunk/src/c++/api/InputStreamer.hh
    hadoop/avro/trunk/src/c++/api/OutputStreamer.hh
    hadoop/avro/trunk/src/c++/api/Validator.hh

Modified: hadoop/avro/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/hadoop/avro/trunk/CHANGES.txt?rev=835194&r1=835193&r2=835194&view=diff
==============================================================================
--- hadoop/avro/trunk/CHANGES.txt (original)
+++ hadoop/avro/trunk/CHANGES.txt Thu Nov 12 02:17:08 2009
@@ -66,6 +66,8 @@
 
   BUG FIXES
  
+    AVRO-191. Explicitly include stdint.h for C++. (cutting via sbanacho)
+
     AVRO-176. Safeguard against bad istreams before reading. (sbanacho)
 
     AVRO-141.  Fix a NullPointerException in ReflectData#isRecord().

Modified: hadoop/avro/trunk/src/c++/api/InputStreamer.hh
URL: http://svn.apache.org/viewvc/hadoop/avro/trunk/src/c%2B%2B/api/InputStreamer.hh?rev=835194&r1=835193&r2=835194&view=diff
==============================================================================
--- hadoop/avro/trunk/src/c++/api/InputStreamer.hh (original)
+++ hadoop/avro/trunk/src/c++/api/InputStreamer.hh Thu Nov 12 02:17:08 2009
@@ -20,6 +20,7 @@
 #define avro_InputStreamer_hh__
 
 #include <iostream>
+#include <stdint.h>
 
 namespace avro {
 

Modified: hadoop/avro/trunk/src/c++/api/OutputStreamer.hh
URL: http://svn.apache.org/viewvc/hadoop/avro/trunk/src/c%2B%2B/api/OutputStreamer.hh?rev=835194&r1=835193&r2=835194&view=diff
==============================================================================
--- hadoop/avro/trunk/src/c++/api/OutputStreamer.hh (original)
+++ hadoop/avro/trunk/src/c++/api/OutputStreamer.hh Thu Nov 12 02:17:08 2009
@@ -20,6 +20,7 @@
 #define avro_OutputStreamer_hh__
 
 #include <iostream>
+#include <stdint.h>
 
 namespace avro {
 

Modified: hadoop/avro/trunk/src/c++/api/Validator.hh
URL: http://svn.apache.org/viewvc/hadoop/avro/trunk/src/c%2B%2B/api/Validator.hh?rev=835194&r1=835193&r2=835194&view=diff
==============================================================================
--- hadoop/avro/trunk/src/c++/api/Validator.hh (original)
+++ hadoop/avro/trunk/src/c++/api/Validator.hh Thu Nov 12 02:17:08 2009
@@ -21,6 +21,7 @@
 
 #include <boost/noncopyable.hpp>
 #include <vector>
+#include <stdint.h>
 
 #include "Types.hh"
 #include "Node.hh"