Return blank string instead of undefined

This commit is contained in:
Simon Robertshaw 2014-03-16 11:44:36 +00:00
parent 197a70c2e6
commit 8e7c30700e

View File

@ -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)