This is an automated email from the ASF dual-hosted git repository.
lichaoyong pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-doris.git
The following commit(s) were added to refs/heads/master by this push:
new 36f2863 fix mismatched tags (#3489)
36f2863 is described below
commit 36f2863574df49ef36d2a5e8f6df38d210f163ee
Author: sduzh <[email protected]>
AuthorDate: Thu May 7 09:37:26 2020 +0800
fix mismatched tags (#3489)
RandomAccessFileOptions, WritableFileOptions, RandomRWFileOptions
defined as a struct but previously declared as a class; this is valid,
but will result in compile warning or error under clang compiler
---
be/src/env/env.h | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/be/src/env/env.h b/be/src/env/env.h
index 027114c..5ad360b 100644
--- a/be/src/env/env.h
+++ b/be/src/env/env.h
@@ -21,9 +21,9 @@ class RandomAccessFile;
class RandomRWFile;
class WritableFile;
class SequentialFile;
-class WritableFileOptions;
-class RandomAccessFileOptions;
-class RandomRWFileOptions;
+struct WritableFileOptions;
+struct RandomAccessFileOptions;
+struct RandomRWFileOptions;
class Env {
public:
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]