Skip to content

Commit

Permalink
Return blank string instead of undefined
Browse files Browse the repository at this point in the history
  • Loading branch information
simtr committed Mar 16, 2014
1 parent 197a70c commit 8e7c307
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/PowderToyRenderer.cpp
Expand Up @@ -19,7 +19,7 @@

void EngineProcess() {}
void ClipboardPush(std::string) {}
std::string ClipboardPull() {}
std::string ClipboardPull() { return ""; }
int GetModifiers() { return 0; }

void readFile(std::string filename, std::vector<char> & storage)
Expand Down

0 comments on commit 8e7c307

Please sign in to comment.