From 58e69fbd446bc7c9c8f087b08832063938d41055 Mon Sep 17 00:00:00 2001 From: Danny Robson Date: Fri, 8 Jun 2012 16:45:39 +1000 Subject: [PATCH] Instance the point ostream operators --- point.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/point.cpp b/point.cpp index c60cd5cd..0b2250d6 100644 --- a/point.cpp +++ b/point.cpp @@ -181,6 +181,11 @@ util::operator<< (std::ostream &os, const util::point &p) { } +template std::ostream& util::operator<< (std::ostream &os, const util::point<1>&); +template std::ostream& util::operator<< (std::ostream &os, const util::point<2>&); +template std::ostream& util::operator<< (std::ostream &os, const util::point<3>&); + + template struct util::point<1>; template struct util::point<2>; template struct util::point<3>;