aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party
diff options
context:
space:
mode:
authorGravatar Thiago Farina <tfarina@chromium.org>2016-04-01 08:58:06 +0000
committerGravatar Klaus Aehlig <aehlig@google.com>2016-04-01 12:16:31 +0000
commite6faf70ae421862a37bdea24c78068ba992c827d (patch)
tree450d7a6f2530dfe68bec0c137a85a760f54d5871 /third_party
parent21458dc50e33eb76a6f5dfc631561b628b5d1f9f (diff)
ijar: fix mismatched-tags warnings
This patch fixes the following warnings: third_party/ijar/mapped_file_unix.cc:31:1: warning: 'MappedInputFileImpl' defined as a struct here but previously declared as a class [-Wmismatched-tags] struct MappedInputFileImpl { ^ ./third_party/ijar/mapped_file.h:22:1: note: did you mean struct here? class MappedInputFileImpl; third_party/ijar/mapped_file_unix.cc:88:1: warning: 'MappedOutputFileImpl' defined as a struct here but previously declared as a class [-Wmismatched-tags] struct MappedOutputFileImpl { ^ ./third_party/ijar/mapped_file.h:23:1: note: did you mean struct here? class MappedOutputFileImpl; -- Change-Id: Ie8269c0cfec41b4a1ddcdc9a9cd155ecac4b01d8 Reviewed-on: https://bazel-review.googlesource.com/#/c/3101 MOS_MIGRATED_REVID=118761176
Diffstat (limited to 'third_party')
-rw-r--r--third_party/ijar/mapped_file.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/third_party/ijar/mapped_file.h b/third_party/ijar/mapped_file.h
index ea0ee824e0..6db0673bae 100644
--- a/third_party/ijar/mapped_file.h
+++ b/third_party/ijar/mapped_file.h
@@ -19,8 +19,8 @@
namespace devtools_ijar {
-class MappedInputFileImpl;
-class MappedOutputFileImpl;
+struct MappedInputFileImpl;
+struct MappedOutputFileImpl;
// A memory mapped input file.
class MappedInputFile {