Skip to content

Instantly share code, notes, and snippets.

@Lewuathe
Created February 7, 2013 12:58
Show Gist options
  • Select an option

  • Save Lewuathe/4730746 to your computer and use it in GitHub Desktop.

Select an option

Save Lewuathe/4730746 to your computer and use it in GitHub Desktop.
[const char*] with const_cast<char*> ref: http://qiita.com/items/3e30a87e82fda3d015b6
char **params;
params = new char*[paramNum];
params[0] = const_cast<char*>("param1");
params[1] = const_cast<char*>("param2");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment