From 6b324f554e34ddc12089bb352e58003da2f143a3 Mon Sep 17 00:00:00 2001 From: killua Date: Tue, 7 Oct 2025 01:31:30 +0400 Subject: [PATCH] refactor(linux_parser) add missing definition guard to prevent cascading. it shouldn't be a problem since there's pragma once, but better safe than sorry. --- include/parser/platform_headers/linux_parser.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/include/parser/platform_headers/linux_parser.hpp b/include/parser/platform_headers/linux_parser.hpp index 61d3d0f..38e741d 100644 --- a/include/parser/platform_headers/linux_parser.hpp +++ b/include/parser/platform_headers/linux_parser.hpp @@ -2,6 +2,7 @@ #ifdef __linux__ #ifndef LINUX_PARSER_HPP +#define LINUX_PARSER_HPP #include #include