From 95988fe5f6a243b9873f5214b08cbea54d8bb7e9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=82=B9=E6=99=93=E8=88=AA?= <1210603696@qq.com> Date: Mon, 12 Jan 2015 12:40:17 +0800 Subject: [PATCH] =?UTF-8?q?=E9=87=8D=E6=9E=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- TinySTL/{ => Detail}/Alloc.cpp | 2 +- TinySTL/{ => Detail}/String.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) rename TinySTL/{ => Detail}/Alloc.cpp (99%) rename TinySTL/{ => Detail}/String.cpp (99%) diff --git a/TinySTL/Alloc.cpp b/TinySTL/Detail/Alloc.cpp similarity index 99% rename from TinySTL/Alloc.cpp rename to TinySTL/Detail/Alloc.cpp index 13e7b7d..94ad13e 100644 --- a/TinySTL/Alloc.cpp +++ b/TinySTL/Detail/Alloc.cpp @@ -1,4 +1,4 @@ -#include "Alloc.h" +#include "../Alloc.h" namespace TinySTL{ char *alloc::start_free = 0; diff --git a/TinySTL/String.cpp b/TinySTL/Detail/String.cpp similarity index 99% rename from TinySTL/String.cpp rename to TinySTL/Detail/String.cpp index b3113e0..2f38c69 100644 --- a/TinySTL/String.cpp +++ b/TinySTL/Detail/String.cpp @@ -1,4 +1,4 @@ -#include "String.h" +#include "../String.h" #include