Skip to content

Instantly share code, notes, and snippets.

@yashihei
Created February 15, 2016 21:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yashihei/eb772cb0fe69bae32b99 to your computer and use it in GitHub Desktop.
Save yashihei/eb772cb0fe69bae32b99 to your computer and use it in GitHub Desktop.
何か数値をログに出したい時
template <typename Type> inline void OutputDebugValue(Type& value) {
OutputDebugString(std::to_string(value).c_str());
OutputDebugString("\n");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment