You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@orc.apache.org by om...@apache.org on 2019/08/30 22:06:58 UTC

[orc] branch master updated: ORC-549. Fix missing include for unordered_map.

This is an automated email from the ASF dual-hosted git repository.

omalley pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/orc.git


The following commit(s) were added to refs/heads/master by this push:
     new 56c1823  ORC-549. Fix missing include for unordered_map.
56c1823 is described below

commit 56c1823b0aa68b9920686c90b92ac5f47ecca739
Author: Owen O'Malley <om...@apache.org>
AuthorDate: Fri Aug 30 13:59:40 2019 -0700

    ORC-549. Fix missing include for unordered_map.
    
    Signed-off-by: Owen O'Malley <om...@apache.org>
---
 c++/src/ColumnReader.hh | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/c++/src/ColumnReader.hh b/c++/src/ColumnReader.hh
index d3c810e..0c64e5b 100644
--- a/c++/src/ColumnReader.hh
+++ b/c++/src/ColumnReader.hh
@@ -19,6 +19,8 @@
 #ifndef ORC_COLUMN_READER_HH
 #define ORC_COLUMN_READER_HH
 
+#include <unordered_map>
+
 #include "orc/Vector.hh"
 
 #include "ByteRLE.hh"