From 9ba51f221b011a7d0a863e8873e3eb1641b13d95 Mon Sep 17 00:00:00 2001 From: Ted John Date: Wed, 22 Feb 2017 18:00:19 +0000 Subject: [PATCH] Add summary comments --- src/openrct2/config/IniReader.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/openrct2/config/IniReader.cpp b/src/openrct2/config/IniReader.cpp index 4df1ee9e4d..1ba131e70d 100644 --- a/src/openrct2/config/IniReader.cpp +++ b/src/openrct2/config/IniReader.cpp @@ -25,6 +25,9 @@ #include "../core/StringBuilder.hpp" #include "IniReader.hpp" +/** + * Simple tuple (start, length) representing a text span in a buffer. + */ struct Span { size_t Start = 0; @@ -38,6 +41,9 @@ struct Span } }; +/** + * Simple tuple (start, end) inclusive representing a range of lines. + */ struct LineRange { size_t Start = 0;