Skip to content

Commit

Permalink
Remove trailing space from test data
Browse files Browse the repository at this point in the history
We are having trouble with CI on GitHub as it takes a lot of time. The
previous run on #504 revealed only much later that we forgot to
re-generate the test data. In this patch, we re-generate the test data
with the trailing spaces removed.
  • Loading branch information
mristin committed Jun 21, 2024
1 parent 594e55c commit 0d54211
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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&) {
Expand Down Expand Up @@ -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() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down Expand Up @@ -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,
Expand Down

0 comments on commit 0d54211

Please sign in to comment.