Skip to content
Snippets Groups Projects
Commit b0943249 authored by Brad King's avatar Brad King Committed by Ben Boeckel
Browse files

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.
parent 8f63f3b0
No related branches found
No related tags found
No related merge requests found
#include "config_iface.h"
#include <config_iface.h>
#include "upstream.h"
int consumer()
......
#include "systemlib.h"
#include <systemlib.h>
int main()
{
......
......@@ -2,7 +2,7 @@
#ifndef UPSTREAM_H
#define UPSTREAM_H
#include "systemlib.h"
#include <systemlib.h>
#ifdef _WIN32
__declspec(dllexport)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment