From 491155645952a213f261ccf549ef52d553ab990d Mon Sep 17 00:00:00 2001 From: Davin McCall Date: Wed, 4 Nov 2015 22:08:37 +0000 Subject: [PATCH] Add parameter documentation for read_setting_value --- load_service.cc | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/load_service.cc b/load_service.cc index 8dc4de2..a45316a 100644 --- a/load_service.cc +++ b/load_service.cc @@ -56,6 +56,12 @@ static string read_setting_name(string_iterator & i, string_iterator end) // // This function expects the string to be in an ASCII-compatible, single byte // encoding (the "classic" locale). +// +// Params: +// i - reference to string iterator through the line +// end - iterator at end of line +// part_positions - list of to which the position of each setting value +// part will be added as [start,end). May be null. static string read_setting_value(string_iterator & i, string_iterator end, std::list> * part_positions = nullptr) { -- 2.25.1