svn commit: trunk/uClibc++/include

gkajmowi at uclibc.org gkajmowi at uclibc.org
Wed Apr 5 02:32:09 UTC 2006


Author: gkajmowi
Date: 2006-04-04 19:32:07 -0700 (Tue, 04 Apr 2006)
New Revision: 14750

Log:
Remove debugging code and declarations for code not likely to be implemented any time soon


Modified:
   trunk/uClibc++/include/vector


Changeset:
Modified: trunk/uClibc++/include/vector
===================================================================
--- trunk/uClibc++/include/vector	2006-04-05 01:43:39 UTC (rev 14749)
+++ trunk/uClibc++/include/vector	2006-04-05 02:32:07 UTC (rev 14750)
@@ -40,15 +40,6 @@
 	template <class T, class Allocator> bool operator<=(const vector<T,Allocator>& x, const vector<T,Allocator>& y);
 	template <class T, class Allocator> void swap(vector<T,Allocator>& x, vector<T,Allocator>& y);
 
-//	template <class Allocator> bool operator==(const vector<bool,Allocator>& x, const vector<bool,Allocator>& y);
-//	template <class Allocator> bool operator< (const vector<bool,Allocator>& x, const vector<bool,Allocator>& y);
-//	template <class Allocator> bool operator!=(const vector<bool,Allocator>& x, const vector<bool,Allocator>& y);
-//	template <class Allocator> bool operator> (const vector<bool,Allocator>& x, const vector<bool,Allocator>& y);
-//	template <class Allocator> bool operator>=(const vector<bool,Allocator>& x, const vector<bool,Allocator>& y);
-//	template <class Allocator> bool operator<=(const vector<bool,Allocator>& x, const vector<bool,Allocator>& y);
-//	template <class Allocator> void swap(vector<bool,Allocator>& x, vector<bool,Allocator>& y);
-
-
 	template <class T, class Allocator> class _UCXXEXPORT vector {
 	public:
 
@@ -142,7 +133,6 @@
 		}
 
 		template <class Size, class U> _UCXXEXPORT void assign(Size n, const U& u = U()){
-//		void assign(size_type n, const T& u ){
 			clear();
 			resize(n, u);
 		}
@@ -247,7 +237,6 @@
 		}
 
 		inline void pop_back(){
-//			resize(size() - 1, defaultValue);
 			downsize(size() - 1);
 		}
 




More information about the uClibc-cvs mailing list