Move the `#include` inside include guards
PiperOrigin-RevId: 546831735
Change-Id: I38aa870196e8a795f75bf9408558a928c05e9be7
diff --git a/support/internal/attribute_macros.h b/support/internal/attribute_macros.h
index 7e53b63..255119b 100644
--- a/support/internal/attribute_macros.h
+++ b/support/internal/attribute_macros.h
@@ -2,11 +2,11 @@
// Exceptions. See /LICENSE for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
-#include "absl/base/attributes.h"
-
#ifndef THIRD_PARTY_CRUBIT_SUPPORT_INTERNAL_ATTRIBUTES_H_
#define THIRD_PARTY_CRUBIT_SUPPORT_INTERNAL_ATTRIBUTES_H_
+#include "absl/base/attributes.h"
+
// Style waiver granted in <internal link>
#if ABSL_HAVE_CPP_ATTRIBUTE(clang::annotate) && \
ABSL_HAVE_CPP_ATTRIBUTE(clang::annotate_type)