Skip to content

Commit

Permalink
Remove semicolons in 32-bit and fuzzer Windows builds.
Browse files Browse the repository at this point in the history
Bug: 926235
Change-Id: Idbe191988ab7b912c9b9af2e5c9f266fa633b274
Reviewed-on: https://chromium-review.googlesource.com/c/1486874
Auto-Submit: Nico Weber <thakis@chromium.org>
Reviewed-by: Katie Dektar <katie@chromium.org>
Reviewed-by: Will Harris <wfh@chromium.org>
Commit-Queue: Will Harris <wfh@chromium.org>
Cr-Commit-Position: refs/heads/master@{#635248}
  • Loading branch information
nico authored and Commit Bot committed Feb 25, 2019
1 parent 8bc05a1 commit c2d97e6
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion content/browser/speech/mock_tts_controller.cc
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ class MockTtsController : public TtsController {

TtsEngineDelegate* GetTtsEngineDelegate() override { return nullptr; }

void SetTtsPlatform(TtsPlatform* tts_platform) override{};
void SetTtsPlatform(TtsPlatform* tts_platform) override {}

int QueueSize() override { return 0; }

Expand Down
2 changes: 1 addition & 1 deletion sandbox/win/src/resolver_32.cc
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ struct InternalThunk {
opcodes_6 = 0xc35a;
extra_argument = 0;
interceptor_function = 0;
};
}
ULONG opcodes_1; // = 0x5208ec83
ULONG opcodes_2; // = 0x0c24548b
ULONG opcodes_3; // = 0x08245489
Expand Down
2 changes: 1 addition & 1 deletion sandbox/win/src/service_resolver_32.cc
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ struct ServiceFullThunk {

#pragma pack(pop)

}; // namespace
} // namespace

namespace sandbox {

Expand Down
2 changes: 1 addition & 1 deletion sandbox/win/src/sidestep/ia32_modrm_map.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -89,4 +89,4 @@ const ModrmEntry MiniDisassembler::s_ia32_modrm_map_[] = {
/* r/m == 111 */ { false, false, OS_ZERO },
};

}; // namespace sidestep
} // namespace sidestep
2 changes: 1 addition & 1 deletion sandbox/win/src/sidestep/ia32_opcode_map.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1156,4 +1156,4 @@ const OpcodeTable MiniDisassembler::s_ia32_opcode_map_[]={
/* 24 */ {s_opcode_byte_after_0fc7, 3, 0x07, 0, 0x01}
};

}; // namespace sidestep
} // namespace sidestep
2 changes: 1 addition & 1 deletion sandbox/win/src/sidestep/mini_disassembler.h
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,6 @@ class MiniDisassembler {
bool got_f2_prefix_, got_f3_prefix_, got_66_prefix_;
};

}; // namespace sidestep
} // namespace sidestep

#endif // SANDBOX_SRC_SIDESTEP_MINI_DISASSEMBLER_H__
2 changes: 1 addition & 1 deletion sandbox/win/src/sidestep/mini_disassembler_types.h
Original file line number Diff line number Diff line change
Expand Up @@ -192,6 +192,6 @@ struct ModrmEntry {
OperandSize operand_size_;
};

}; // namespace sidestep
} // namespace sidestep

#endif // SANDBOX_SRC_SIDESTEP_MINI_DISASSEMBLER_TYPES_H__
2 changes: 1 addition & 1 deletion sandbox/win/src/sidestep/preamble_patcher.h
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,6 @@ class PreamblePatcher {
size_t* bytes_needed);
};

}; // namespace sidestep
} // namespace sidestep

#endif // SANDBOX_SRC_SIDESTEP_PREAMBLE_PATCHER_H__
2 changes: 1 addition & 1 deletion sandbox/win/src/sidestep/preamble_patcher_with_stub.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,6 @@ SideStepError PreamblePatcher::RawPatchWithStub(
return SIDESTEP_SUCCESS;
}

}; // namespace sidestep
} // namespace sidestep

#undef ASSERT
2 changes: 1 addition & 1 deletion skia/tools/fuzzers/fuzzer_environment.cc
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ class Environment {
};

static Environment env;
}; // namespace
} // namespace

0 comments on commit c2d97e6

Please sign in to comment.