summaryrefslogtreecommitdiff
path: root/quantum/variable_trace.h
diff options
context:
space:
mode:
authorRyan <fauxpark@gmail.com>2020-12-26 15:53:12 +1100
committerDrashna Jael're <drashna@live.com>2021-01-12 22:46:10 -0800
commit3635973fd58ffc718805c1e85fa1be9bca4cfffd (patch)
tree972344ccab7620b0520f0d6c0a80a29db97a244a /quantum/variable_trace.h
parentedc6a30ccc2c34cb2076b0c3bfc2019eee8ab984 (diff)
Change include guards in quantum/ to pragma once (#11239)
Diffstat (limited to 'quantum/variable_trace.h')
-rw-r--r--quantum/variable_trace.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/quantum/variable_trace.h b/quantum/variable_trace.h
index 26b810d3cd..f4d1253800 100644
--- a/quantum/variable_trace.h
+++ b/quantum/variable_trace.h
@@ -14,8 +14,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#ifndef VARIABLE_TRACE_H
-#define VARIABLE_TRACE_H
+#pragma once
// For more information about the variable tracing see the readme.
@@ -46,4 +45,3 @@
void add_traced_variable(const char* name, void* addr, unsigned size, const char* func, int line);
void remove_traced_variable(const char* name, const char* func, int line);
void verify_traced_variables(const char* func, int line);
-#endif