From fe57aec2a434b394c020d17d3b8f6769ee008414 Mon Sep 17 00:00:00 2001 From: elsid Date: Fri, 30 Dec 2022 00:04:02 +0100 Subject: [PATCH] Move ESM::RefId comment to make sure IDEs recognize it and show in tooltips --- components/esm/refid.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/components/esm/refid.hpp b/components/esm/refid.hpp index 6bc49313d0..7394bf8ba2 100644 --- a/components/esm/refid.hpp +++ b/components/esm/refid.hpp @@ -8,11 +8,11 @@ namespace ESM { + // RefId is used to represent an Id that identifies an ESM record. These Ids can then be used in + // ESM::Stores to find the actual record. These Ids can be serialized/de-serialized, stored on disk and remain + // valid. They are used by ESM files, by records to reference other ESM records. struct RefId { - // This structure is used to represent an Id that identifies an ESM record. These Ids can then be used in - // ESM::Stores to find the actual record. These Ids can be serialized/de-serialized, stored on disk and remain - // valid. They are used by ESM files, by records to reference other ESM records. const static RefId sEmpty; bool empty() const { return mId.empty(); } void swap(RefId& rhs) { mId.swap(rhs.mId); }