From 67fdd6766ff7216920130933258e07f6a9f7ab0d Mon Sep 17 00:00:00 2001 From: Paul Ferrand Date: Sat, 4 Jan 2020 16:32:35 +0100 Subject: [PATCH] Whitespace --- src/sfizz/SfzHelpers.h | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/src/sfizz/SfzHelpers.h b/src/sfizz/SfzHelpers.h index 295f5279..28ab2fe0 100644 --- a/src/sfizz/SfzHelpers.h +++ b/src/sfizz/SfzHelpers.h @@ -145,10 +145,10 @@ absl::optional readNoteValue(const absl::string_view& value); * return them, while updating the source by removing this header * and members from the beginning. The function "consumes" the * header and its members from the source if found. - * + * * No check is made to see if the header is "valid" in the sfz sense. * The output parameters are set only if the method returns true. - * + * * @param source A source view; can be updated and shortened * @param header An output view on the header, without the <> * @param members An output view on the members, untrimmed @@ -161,44 +161,44 @@ bool findHeader(absl::string_view& source, absl::string_view& header, absl::stri * Return them while updating the source by removing this opcode * and value from the beginning. The function "consumes" the * opcode from the source if one is found. - * + * * No check is made to see if the opcode is "valid" in the sfz sense. * The output parameters are set only if the method returns true. - * + * * @param source A source view; can be updated and shortened * @param opcode An output view on the opcode name * @param value An output view on the opcode value * @return true if an opcode was found - * @return false + * @return false */ bool findOpcode(absl::string_view& source, absl::string_view& opcode, absl::string_view& value); /** * @brief Find an SFZ #define statement on a line and return the variable and value as views. - * + * * This function assums that there is a single define per line and that the variable and value * are separated by whitespace. * The output parameters are set only if the method returns true. - * + * * @param line The source line * @param variable An output view on the define variable * @param value An output view on the define value * @return true If a define was found - * @return false + * @return false */ bool findDefine(absl::string_view line, absl::string_view& variable, absl::string_view& value); /** * @brief Find an SFZ #include statement on a line and return included path. - * + * * This function assums that there is a single include per line and that the * include path is within quotes. * The output parameter is set only if the method returns true. - * + * * @param line The source line * @param path The path, if found * @return true If an include was found - * @return false + * @return false */ bool findInclude(absl::string_view line, std::string& path);