Everywhere: Remove unnecessary whitespace at the end of some lines.

This commit is contained in:
Emanuele Torre 2021-03-08 00:19:37 +01:00 committed by Andreas Kling
commit 1f81bc6879
Notes: sideshowbarker 2024-07-18 21:37:47 +09:00
32 changed files with 76 additions and 76 deletions

View file

@ -3,7 +3,7 @@ function foo() {
function bar() {
var y = 6;
}
bar();
return y;
}

View file

@ -8,7 +8,7 @@ $(PROGRAM): $(OBJS)
$(CXX) -o $@ $(OBJS)
%.o: %.cpp
$(CXX) $(CXXFLAGS) -o $@ -c $<
$(CXX) $(CXXFLAGS) -o $@ -c $<
clean:
rm $(OBJS) $(PROGRAM)