diff --git a/test_data/cpp/test_main/aas_core_meta.v3/expected_output/revm.cpp b/test_data/cpp/test_main/aas_core_meta.v3/expected_output/revm.cpp index a0e62e26..a90d9d39 100644 --- a/test_data/cpp/test_main/aas_core_meta.v3/expected_output/revm.cpp +++ b/test_data/cpp/test_main/aas_core_meta.v3/expected_output/revm.cpp @@ -286,7 +286,7 @@ std::string to_string(const InstructionSplit& instruction) { } InstructionKind InstructionEnd::kind() const { - return InstructionKind::End; + return InstructionKind::End; } std::string to_string(const InstructionEnd&) { @@ -467,7 +467,7 @@ class ThreadList { /** * Pop the thread from the back, returning its program counter. - * + * * The order of the threads is not guaranteed. */ size_t Pop() { diff --git a/test_data/cpp/test_main/aas_core_meta.v3/expected_output/revm.hpp b/test_data/cpp/test_main/aas_core_meta.v3/expected_output/revm.hpp index 8ff9a99a..fa54533e 100644 --- a/test_data/cpp/test_main/aas_core_meta.v3/expected_output/revm.hpp +++ b/test_data/cpp/test_main/aas_core_meta.v3/expected_output/revm.hpp @@ -30,7 +30,7 @@ namespace aas_3_0 { * https://swtch.com/~rsc/regexp/regexp2.html * * The ideas for additional instructions were taken from: - * https://www.codeproject.com/Articles/5256833/Regex-as-a-Tiny-Threaded-Virtual-Machine + * https://www.codeproject.com/Articles/5256833/Regex-as-a-Tiny-Threaded-Virtual-Machine * @{ */ namespace revm { @@ -58,7 +58,7 @@ struct Instruction { }; /** - * Match a single character. + * Match a single character. * * If the character on the String Pointer does not match the `character`, stop this * thread as it failed. Otherwise, move the String Pointer to the next character,