diff options
author | Bernard Normier <bernard@zeroc.com> | 2018-10-27 17:57:25 -0400 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2018-10-27 17:57:25 -0400 |
commit | 1c72f5304e91f2e55b117bfd1f8ddb357c96bf19 (patch) | |
tree | 5b7d90885593f0e4e0b94b1cb90840805ae2ddb5 /cpp/src/slice2js | |
parent | Fixed iOS and PHP7 shadow warning related build failures (diff) | |
download | ice-1c72f5304e91f2e55b117bfd1f8ddb357c96bf19.tar.bz2 ice-1c72f5304e91f2e55b117bfd1f8ddb357c96bf19.tar.xz ice-1c72f5304e91f2e55b117bfd1f8ddb357c96bf19.zip |
Fixed fallthrough warnings + clang 3.x fixes
Diffstat (limited to 'cpp/src/slice2js')
-rw-r--r-- | cpp/src/slice2js/Gen.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cpp/src/slice2js/Gen.cpp b/cpp/src/slice2js/Gen.cpp index 40228a48769..7b050e80a12 100644 --- a/cpp/src/slice2js/Gen.cpp +++ b/cpp/src/slice2js/Gen.cpp @@ -879,8 +879,10 @@ Slice::Gen::RequireVisitor::visitDictionary(const DictionaryPtr& dict) { case Builtin::KindObject: _seenObjectDict = true; + break; case Builtin::KindObjectProxy: _seenObjectProxyDict = true; + break; default: break; } |