Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Kitware
GitHub Repository: Kitware/CMake
Path: blob/master/Utilities/ClangTidyModule/Tests/cmake-use-pragma-once/cmake-use-pragma-once-both.h
3156 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