-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove call to non-existant to_string
- Loading branch information
Jade Meskill and Roy van de Water
authored and
Integrum User
committed
Dec 10, 2013
1 parent
ea76dab
commit b62638c
Showing
4 changed files
with
1 addition
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ test: | |
./.build/run_all | ||
|
||
clean: | ||
rm .build/run_all | ||
rm -f .build/run_all | ||
ino clean | ||
|
||
upload: build | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,4 +3,3 @@ board-model = leonardo | |
|
||
[upload] | ||
board-model = leonardo | ||
serial-port = /dev/tty.usbmodemfa131 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 { | ||
|