changeset 13735:2cd903770748

Fix broken gcc compilation due to changeset d13b6086aea9. * idx-vector.cc: Don't include <memory>. * idx-vector.h: Move here.
author Michael Goffioul <michael.goffioul@gmail.com>
date Thu, 20 Oct 2011 14:08:25 +0100
parents 28ddb3150943
children deb69dab4514
files liboctave/idx-vector.cc liboctave/idx-vector.h
diffstat 2 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/liboctave/idx-vector.cc	Thu Oct 20 12:54:58 2011 +0100
+++ b/liboctave/idx-vector.cc	Thu Oct 20 14:08:25 2011 +0100
@@ -27,7 +27,6 @@
 #endif
 
 #include <cstdlib>
-#include <memory>
 
 #include <iostream>
 
--- a/liboctave/idx-vector.h	Thu Oct 20 12:54:58 2011 +0100
+++ b/liboctave/idx-vector.h	Thu Oct 20 14:08:25 2011 +0100
@@ -29,6 +29,7 @@
 
 #include <algorithm>
 #include <iosfwd>
+#include <memory>
 
 #include "dim-vector.h"
 #include "oct-inttypes.h"