You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@parquet.apache.org by we...@apache.org on 2017/06/19 15:25:21 UTC

parquet-cpp git commit: PARQUET-991: Fix msvc warning C4100: '': unreferenced formal parameter

Repository: parquet-cpp
Updated Branches:
  refs/heads/master fc6021414 -> 792f858c9


PARQUET-991: Fix msvc warning C4100: '<id>': unreferenced formal parameter

Author: rip.nsk <ri...@gmail.com>

Closes #355 from rip-nsk/PARQUET-991x1 and squashes the following commits:

0de2870 [rip.nsk] Fix msvc warning C4100: '<id>': unreferenced formal parameter


Project: http://git-wip-us.apache.org/repos/asf/parquet-cpp/repo
Commit: http://git-wip-us.apache.org/repos/asf/parquet-cpp/commit/792f858c
Tree: http://git-wip-us.apache.org/repos/asf/parquet-cpp/tree/792f858c
Diff: http://git-wip-us.apache.org/repos/asf/parquet-cpp/diff/792f858c

Branch: refs/heads/master
Commit: 792f858c92cfa8c8928c86b1fb21dc023eb223a1
Parents: fc60214
Author: rip.nsk <ri...@gmail.com>
Authored: Mon Jun 19 11:25:14 2017 -0400
Committer: Wes McKinney <we...@twosigma.com>
Committed: Mon Jun 19 11:25:14 2017 -0400

----------------------------------------------------------------------
 src/parquet/encoding.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/parquet-cpp/blob/792f858c/src/parquet/encoding.h
----------------------------------------------------------------------
diff --git a/src/parquet/encoding.h b/src/parquet/encoding.h
index 47f2b75..7c51cfd 100644
--- a/src/parquet/encoding.h
+++ b/src/parquet/encoding.h
@@ -92,7 +92,7 @@ class Decoder {
   // the decoder would decode put to 'max_values', storing the result in 'buffer'.
   // The function returns the number of values decoded, which should be max_values
   // except for end of the current data page.
-  virtual int Decode(T* buffer, int max_values) {
+  virtual int Decode(T* /* buffer */, int /* max_values */) {
     throw ParquetException("Decoder does not implement this type.");
   }