Move #pragma to first line in each header

The `#pragma once` is now on the first line of each header.
This commit is contained in:
Markus Mäkelä 2017-03-27 17:04:15 +03:00
parent 14cfd482de
commit 02796e7304
5 changed files with 5 additions and 10 deletions

View File

@ -1,3 +1,4 @@
#pragma once
/*
* Copyright (c) 2016 MariaDB Corporation Ab
*
@ -11,8 +12,6 @@
* Public License.
*/
#pragma once
/**
* @file schemarouter.hh - Common schemarouter definitions
*/

View File

@ -1,3 +1,4 @@
#pragma once
/*
* Copyright (c) 2016 MariaDB Corporation Ab
*
@ -11,8 +12,6 @@
* Public License.
*/
#pragma once
#include "schemarouter.hh"
#include <set>

View File

@ -1,3 +1,4 @@
#pragma once
/*
* Copyright (c) 2016 MariaDB Corporation Ab
*
@ -11,8 +12,6 @@
* Public License.
*/
#pragma once
#include "schemarouter.hh"
#include <string>

View File

@ -1,3 +1,4 @@
#pragma once
/*
* Copyright (c) 2016 MariaDB Corporation Ab
*
@ -11,8 +12,6 @@
* Public License.
*/
#pragma once
#include <list>
#include <string>

View File

@ -1,3 +1,4 @@
#pragma once
/*
* Copyright (c) 2016 MariaDB Corporation Ab
*
@ -11,8 +12,6 @@
* Public License.
*/
#pragma once
#include <maxscale/cppdefs.hh>
#include <map>