system_wrappers: Fix include header guards.
This should have been a part of https://codereview.webrtc.org/1413333002/ The header guard PRESUBMIT rule is being enabled in https://codereview.webrtc.org/1419203005 so things like this won't happen in the future. BUG=5095 NOTRY=True Review URL: https://codereview.webrtc.org/1425693005 Cr-Commit-Position: refs/heads/master@{#10475}
This commit is contained in:
@ -9,8 +9,8 @@
|
||||
*/
|
||||
// An OS-independent sleep function.
|
||||
|
||||
#ifndef WEBRTC_SYSTEM_WRAPPERS_INTERFACE_SLEEP_H_
|
||||
#define WEBRTC_SYSTEM_WRAPPERS_INTERFACE_SLEEP_H_
|
||||
#ifndef WEBRTC_SYSTEM_WRAPPERS_INCLUDE_SLEEP_H_
|
||||
#define WEBRTC_SYSTEM_WRAPPERS_INCLUDE_SLEEP_H_
|
||||
|
||||
namespace webrtc {
|
||||
|
||||
@ -21,4 +21,4 @@ void SleepMs(int msecs);
|
||||
|
||||
} // namespace webrtc
|
||||
|
||||
#endif // WEBRTC_SYSTEM_WRAPPERS_INTERFACE_SLEEP_H_
|
||||
#endif // WEBRTC_SYSTEM_WRAPPERS_INCLUDE_SLEEP_H_
|
||||
|
||||
Reference in New Issue
Block a user