Advertisement
eliasdaler

wat

Jun 8th, 2016
290
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.27 KB | None | 0 0
  1. // UPD: This code doesn't compile in VS 2015 Update 2. Update 3 fixed it!
  2.  
  3. #include <type_traits>
  4. #include <unordered_map>
  5.  
  6. template <typename... Args>
  7. using wut = std::index_sequence_for<Args...>;
  8.  
  9. int main()
  10. {
  11.     std::unordered_map<int, int> x;
  12.     x[2] = 6;
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement