Commit dc3837ab authored by Yuly Novikov's avatar Yuly Novikov Committed by Commit Bot

Remove more semicolons in Windows sandbox.

TBR=jschuh

Bug: 926235, 936194
Change-Id: I28a335b061cd1bba070e0b5c8197b82a2cf834e6
Reviewed-on: https://chromium-review.googlesource.com/c/1490510Reviewed-by: default avatarYuly Novikov <ynovikov@chromium.org>
Commit-Queue: Yuly Novikov <ynovikov@chromium.org>
Cr-Commit-Position: refs/heads/master@{#635821}
parent f9cc6b91
...@@ -16,7 +16,7 @@ class HandleToFile { ...@@ -16,7 +16,7 @@ class HandleToFile {
public: public:
HandleToFile() { HandleToFile() {
file_ = NULL; file_ = NULL;
}; }
// Note: c_file_handle_ does not need to be closed because fclose does it. // Note: c_file_handle_ does not need to be closed because fclose does it.
~HandleToFile() { ~HandleToFile() {
...@@ -24,7 +24,7 @@ class HandleToFile { ...@@ -24,7 +24,7 @@ class HandleToFile {
fflush(file_); fflush(file_);
fclose(file_); fclose(file_);
} }
}; }
// Translates a HANDLE (handle) to a FILE * opened with the mode "mode". // Translates a HANDLE (handle) to a FILE * opened with the mode "mode".
// The return value is the FILE * or NULL if there is an error. // The return value is the FILE * or NULL if there is an error.
...@@ -55,7 +55,7 @@ class HandleToFile { ...@@ -55,7 +55,7 @@ class HandleToFile {
file_ = _fdopen(c_file_handle, mode); file_ = _fdopen(c_file_handle, mode);
return file_; return file_;
}; }
private: private:
// the FILE* returned. We need to closed it at the end. // the FILE* returned. We need to closed it at the end.
FILE* file_; FILE* file_;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment