Skip to content

Commit

Permalink
PARQUET-997: Fix override compiler warnings
Browse files Browse the repository at this point in the history
Author: Phillip Cloud <[email protected]>

Closes apache#338 from cpcloud/PARQUET-997 and squashes the following commits:

74acf45 [Phillip Cloud] PARQUET-997: Fix override compiler warnings

Change-Id: I976b1699eea35929104072ec86c1a450f259a2cb
  • Loading branch information
cpcloud authored and wesm committed May 22, 2017
1 parent 7638af1 commit a821f09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpp/src/parquet/compression.h
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ class PARQUET_EXPORT SnappyCodec : public Codec {

int64_t MaxCompressedLen(int64_t input_len, const uint8_t* input) override;

const char* name() const { return "snappy"; }
const char* name() const override { return "snappy"; }
};

// Brotli codec.
Expand Down

0 comments on commit a821f09

Please sign in to comment.