modernize header guards to #pragma once

This commit is contained in:
Peter SZTANOJEV
2013-10-14 13:21:15 +02:00
parent 27a7873066
commit 0301b24ace
51 changed files with 52 additions and 205 deletions

View File

@@ -1,5 +1,4 @@
#ifndef FILTER_TEST_H
#define FILTER_TEST_H
#pragma once
#include "obs.h"
@@ -23,5 +22,3 @@ EXPORT void test_video_render(struct test_filter *rt);
#ifdef __cplusplus
}
#endif
#endif

View File

@@ -1,5 +1,4 @@
#ifndef OBS_CAPTURE_EXPORTS_H
#define OBS_CAPTURE_EXPORTS_H
#pragma once
#include "util/c99defs.h"
@@ -13,5 +12,3 @@ EXPORT bool enum_filters(size_t idx, const char **name);
#ifdef __cplusplus
}
#endif
#endif

View File

@@ -1,5 +1,4 @@
#ifndef RANDOM_TEX_H
#define RANDOM_TEX_H
#pragma once
#include "obs.h"
@@ -24,5 +23,3 @@ EXPORT int random_getheight(struct random_tex *rt);
#ifdef __cplusplus
}
#endif
#endif