浏览代码

Uniformity of naming.

Sam Jaffe 5 年之前
父节点
当前提交
ae31231ff0

include/pointer/const_propogating_ptr.hpp → include/pointers/const_propogating_ptr.hpp


include/pointer/const_ptr.hpp → include/pointers/const_ptr.hpp


include/pointer/maybe_null.hpp → include/pointers/maybe_null.hpp


include/pointer/not_null.hpp → include/pointers/not_null.hpp


include/pointer/pointer_fwd.hpp → include/pointers/pointer_fwd.hpp


include/pointer/ptr_compare.hpp → include/pointers/ptr_compare.hpp


include/pointer/value_ptr.hpp → include/pointers/value_ptr.hpp


+ 2 - 2
pointers.xcodeproj/project.pbxproj

@@ -59,7 +59,7 @@
 		CD03646B1E1F42A1003B7B84 /* value_ptr_test.cxx */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = value_ptr_test.cxx; sourceTree = "<group>"; };
 		CDC3B0E31DF261D7002A415B /* not_null_test.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = not_null_test.cxx; sourceTree = "<group>"; };
 		CDC3B0E71DF263B2002A415B /* maybe_null_test.cxx */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = maybe_null_test.cxx; sourceTree = "<group>"; };
-		CDCB3C2F24E453E30029B771 /* pointer */ = {isa = PBXFileReference; lastKnownFileType = folder; name = pointer; path = include/pointer; sourceTree = "<group>"; };
+		CDCB3C2F24E453E30029B771 /* pointers */ = {isa = PBXFileReference; lastKnownFileType = folder; name = pointers; path = include/pointers; sourceTree = "<group>"; };
 		CDCB3C3924E456950029B771 /* pointer-test.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "pointer-test.xctest"; sourceTree = BUILT_PRODUCTS_DIR; };
 		CDCB3C3D24E456950029B771 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
 		CDCB3C4A24E4589D0029B771 /* test_stubs.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = test_stubs.h; sourceTree = "<group>"; };
@@ -95,7 +95,7 @@
 			isa = PBXGroup;
 			children = (
 				CDEC1DC52351677C0091D9F2 /* GoogleMock.xcodeproj */,
-				CDCB3C2F24E453E30029B771 /* pointer */,
+				CDCB3C2F24E453E30029B771 /* pointers */,
 				CD125DDB1E1F27E000B53FB5 /* test */,
 				CDCB3C3A24E456950029B771 /* pointer-test */,
 				CD3DA3F31D9B42BC001B53A0 /* Products */,

+ 1 - 1
test/const_propogating_ptr_test.cxx

@@ -5,7 +5,7 @@
 //  Created by Sam Jaffe on 1/5/17.
 //
 
-#include "pointer/const_propogating_ptr.hpp"
+#include "pointers/const_propogating_ptr.hpp"
 
 #include <memory>
 

+ 2 - 2
test/const_ptr_test.cxx

@@ -5,8 +5,8 @@
 //  Created by Sam Jaffe on 1/5/17.
 //
 
-#include "pointer/const_ptr.hpp"
-#include "pointer/const_propogating_ptr.hpp"
+#include "pointers/const_ptr.hpp"
+#include "pointers/const_propogating_ptr.hpp"
 
 #include <gmock/gmock.h>
 

+ 1 - 1
test/maybe_null_test.cxx

@@ -10,7 +10,7 @@
 #define DEBUG
 #endif
 
-#include "pointer/maybe_null.hpp"
+#include "pointers/maybe_null.hpp"
 
 #include <memory>
 

+ 1 - 1
test/not_null_test.cxx

@@ -5,7 +5,7 @@
 //  Created by Sam Jaffe on 12/2/16.
 //
 
-#include "pointer/not_null.hpp"
+#include "pointers/not_null.hpp"
 
 #include <gmock/gmock.h>
 

+ 1 - 1
test/value_ptr_test.cxx

@@ -5,7 +5,7 @@
 //  Created by Sam Jaffe on 1/5/17.
 //
 
-#include "pointer/value_ptr.hpp"
+#include "pointers/value_ptr.hpp"
 
 #include <stdexcept>