From 2ce2af9d023e2dbe16e9f583d3a7ebd87d65eb6f Mon Sep 17 00:00:00 2001 From: anton Date: Fri, 18 Apr 2014 17:52:06 +0200 Subject: [PATCH] add missing includes Signed-off-by: anton --- examples/obj_sticher/obj_sticher.cc | 2 ++ examples/obj_sticher/obj_writer.cc | 1 + 2 files changed, 3 insertions(+) diff --git a/examples/obj_sticher/obj_sticher.cc b/examples/obj_sticher/obj_sticher.cc index 296d384..1d230b8 100644 --- a/examples/obj_sticher/obj_sticher.cc +++ b/examples/obj_sticher/obj_sticher.cc @@ -6,6 +6,8 @@ #include #include +#include +#include typedef std::vector Shape; diff --git a/examples/obj_sticher/obj_writer.cc b/examples/obj_sticher/obj_writer.cc index 1cad9de..f44d3f3 100644 --- a/examples/obj_sticher/obj_writer.cc +++ b/examples/obj_sticher/obj_writer.cc @@ -2,6 +2,7 @@ // Simple wavefront .obj writer // #include "obj_writer.h" +#include static std::string GetFileBasename(const std::string& FileName) {