Skip to content

Commit

Permalink
Use NULL instead of nullptr for XCode
Browse files Browse the repository at this point in the history
  • Loading branch information
swstim committed Sep 28, 2017
1 parent 44ad723 commit 400c3c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cfillion/cfillion.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ void CF_GetClipboard(char *buf, int bufSize)
const char *CF_GetClipboardBig(WDL_FastString *output)
{
if(g_script_strs.Find(output) == -1)
return nullptr;
return NULL;

OpenClipboard(GetMainHwnd());
HANDLE mem = GetClipboardData(FORMAT);
Expand Down

0 comments on commit 400c3c1

Please sign in to comment.