You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@avro.apache.org by th...@apache.org on 2012/08/20 10:03:35 UTC

svn commit: r1374938 - in /avro/trunk: CHANGES.txt lang/c++/api/buffer/Buffer.hh

Author: thiru
Date: Mon Aug 20 08:03:34 2012
New Revision: 1374938

URL: http://svn.apache.org/viewvc?rev=1374938&view=rev
Log:
Buffer.hh includes Config.hh without "../"

Modified:
    avro/trunk/CHANGES.txt
    avro/trunk/lang/c++/api/buffer/Buffer.hh

Modified: avro/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/avro/trunk/CHANGES.txt?rev=1374938&r1=1374937&r2=1374938&view=diff
==============================================================================
--- avro/trunk/CHANGES.txt (original)
+++ avro/trunk/CHANGES.txt Mon Aug 20 08:03:34 2012
@@ -19,6 +19,8 @@ Avro 1.7.2 (unreleased)
 
     AVRO-1135. Avro C++ fails to build on Mac. (thiru)
 
+    AVRO-1140. Buffer.hh includes Config.hh without "../" (Jan van der Lugt via thiru)
+
 Avro 1.7.1 (16 July 2012)
 
   NEW FEATURES

Modified: avro/trunk/lang/c++/api/buffer/Buffer.hh
URL: http://svn.apache.org/viewvc/avro/trunk/lang/c%2B%2B/api/buffer/Buffer.hh?rev=1374938&r1=1374937&r2=1374938&view=diff
==============================================================================
--- avro/trunk/lang/c++/api/buffer/Buffer.hh (original)
+++ avro/trunk/lang/c++/api/buffer/Buffer.hh Mon Aug 20 08:03:34 2012
@@ -25,7 +25,7 @@
 #include <boost/type_traits.hpp>
 #include <vector>
 
-#include "Config.hh"
+#include "../Config.hh"
 #include "detail/BufferDetail.hh"
 #include "detail/BufferDetailIterator.hh"