blob: c35de6f6423a28fb0dc212dab5ada280edcda712 [file] [log] [blame]
Avi Drissmane4622aa2022-09-08 20:36:061// Copyright 2018 The Chromium Authors
Etienne Pierre-Dorayd120ebf2018-09-14 23:38:212// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#include "base/scoped_clear_last_error.h"
6
7#include <windows.h>
8
9namespace base {
Etienne Pierre-Dorayd120ebf2018-09-14 23:38:2110
11ScopedClearLastError::ScopedClearLastError()
Joshua Perazab427af262020-04-13 21:54:4212 : ScopedClearLastErrorBase(), last_system_error_(GetLastError()) {
13 SetLastError(0);
Etienne Pierre-Dorayd120ebf2018-09-14 23:38:2114}
15
16ScopedClearLastError::~ScopedClearLastError() {
Joshua Perazab427af262020-04-13 21:54:4217 SetLastError(last_system_error_);
Etienne Pierre-Dorayd120ebf2018-09-14 23:38:2118}
19
Etienne Pierre-Dorayd120ebf2018-09-14 23:38:2120} // namespace base