Skip to content

Commit

Permalink
Remove call to non-existant to_string
Browse files Browse the repository at this point in the history
  • Loading branch information
Jade Meskill and Roy van de Water authored and Integrum User committed Dec 10, 2013
1 parent ea76dab commit b62638c
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 5 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ test:
./.build/run_all

clean:
rm .build/run_all
rm -f .build/run_all
ino clean

upload: build
Expand Down
1 change: 0 additions & 1 deletion ino.ini
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,3 @@ board-model = leonardo

[upload]
board-model = leonardo
serial-port = /dev/tty.usbmodemfa131
2 changes: 0 additions & 2 deletions src/TestStatus.ino
Original file line number Diff line number Diff line change
Expand Up @@ -134,8 +134,6 @@ void read() {

if(character == 't') {
read_buffer->clear();
else if (character == 'e') {
Serial.println(read_buffer->to_string());
} else {
read_buffer->push(character);
}
Expand Down
1 change: 0 additions & 1 deletion src/char_queue.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
#ifndef _CHAR_QUEUE
#define _CHAR_QUEUE

#include <string>
#include "char.h"

class CharQueue {
Expand Down

0 comments on commit b62638c

Please sign in to comment.