Skip to content

Instantly share code, notes, and snippets.

@deque-blog
Created May 8, 2017 14:27
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 deque-blog/f9ef4ab8061aa34233a7a08fd09bf01a to your computer and use it in GitHub Desktop.
Save deque-blog/f9ef4ab8061aa34233a7a08fd09bf01a to your computer and use it in GitHub Desktop.
// Compiles fine
int avg = average(std::vector<int>{1, 2, 4, 5});
// Does not compile
constexpr int avg = average(std::vector<int>{1, 2, 4, 5});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment