Advertisement
karlicoss

warnings Y U NO APPEAR

Oct 31st, 2011
405
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.19 KB | None | 0 0
  1. #include <iostream>
  2. #include <utility>
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7.     pair<double, double> p(3.0, 4.0);
  8.     pair<int, int> b = p;
  9.     return 0;
  10. }
  11. //$ g++ -Wall -Wextra main.cpp
  12.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement