summaryrefslogtreecommitdiff
path: root/Utilities/ClangTidyModule/Tests/cmake-use-pragma-once/cmake-use-pragma-once-both.h
blob: fdf3cd3edc5bd535466aa95376e427998c92384c (plain)
1
2
3
4
5
6
7
8
9
10
#ifndef BOTH_H
#define BOTH_H
#pragma once

int both()
{
  return 0;
}

#endif