Merge pull request #546 from workhorsy/header_guard_to_pragma_once

Changed lingering header include guards to pragma once.
This commit is contained in:
Tony Wasserka
2014-07-06 14:19:32 +02:00
3 changed files with 4 additions and 12 deletions

View File

@ -2,8 +2,7 @@
// Licensed under GPLv2
// Refer to the license.txt file included.
#ifndef VERTEXLOADER_POSITION_H
#define VERTEXLOADER_POSITION_H
#pragma once
class VertexLoader_Position {
public:
@ -18,4 +17,3 @@ public:
static TPipelineFunction GetFunction(unsigned int _type, unsigned int _format, unsigned int _elements);
};
#endif