Skip to content

Commit 81d915a

Browse files
authored
[fix] invalid hidden character in file (#7624)
1 parent 0bf29b6 commit 81d915a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • examples/math/randomExample/src

examples/math/randomExample/src/ofApp.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ class ofApp : public ofBaseApp{
1818
auto perform_shuffle() {
1919
std::vector<uint8_t> values = { 1, 2, 3, 4, 5, 6, 7, 8 }; // initial order
2020
ofShuffle(values);
21-
  shuffled_string_ = "shuffled values:";
21+
shuffled_string_ = "shuffled values:";
2222
for (const auto v: values) {
2323
shuffled_string_ += " " + ofToUpper(ofToHex(v));
2424
}

0 commit comments

Comments
 (0)