Skip to content

Instantly share code, notes, and snippets.

@drussel
Created December 26, 2012 20:07
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 drussel/4382755 to your computer and use it in GitHub Desktop.
Save drussel/4382755 to your computer and use it in GitHub Desktop.
Fails to compile
#include <CGAL/Exact_predicates_inexact_constructions_kernel.h>
#include <utility>
int main(int, char*[]) {
typedef CGAL::Exact_predicates_inexact_constructions_kernel K;
typedef std::pair<K::Point_3, double> Sp;
Sp(K::Point_3(1.0, 1.0, 1.0), 1.0);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment