Files
CMake/Tests/IncludeDirectories/SystemIncludeDirectories/consumer.cpp
Brad King b094324948 Tests/IncludeDirectories: Include system headers via angle brackets
This is typically how projects include them, and cl's `-external:{I,W}`
flags suppress warnings only when included through angle brackets.
2021-06-17 14:02:52 -04:00

10 lines
91 B
C++

#include <config_iface.h>
#include "upstream.h"
int consumer()
{
return upstream();
}