Book a Demo!
Store
Features
Docs
Share
Support
News
About
Policies
Sign Up
Sign In
Kitware
Edit Copy
Star
GitHub Repository:
Kitware/CMake
Path:
blob/master/Utilities/ClangTidyModule/Tests/cmake-use-pragma-once/cmake-use-pragma-once-both.h
3
1
5
6
views
1
#ifndef BOTH_H
2
#define BOTH_H
3
#pragma once
4
5
int
both
(
)
6
{
7
return
0
;
8
}
9
10
#endif
11
12