Fixing whitespace problems
git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@111764 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -22,5 +22,5 @@ int main()
|
||||
s.append({'a', 'b', 'c'});
|
||||
assert(s == "123abc");
|
||||
}
|
||||
#endif
|
||||
#endif // _LIBCPP_MOVE
|
||||
}
|
||||
|
@@ -9,7 +9,7 @@
|
||||
|
||||
// <string>
|
||||
|
||||
// template<class InputIterator>
|
||||
// template<class InputIterator>
|
||||
// basic_string& append(InputIterator first, InputIterator last);
|
||||
|
||||
#include <string>
|
||||
|
@@ -9,7 +9,7 @@
|
||||
|
||||
// <string>
|
||||
|
||||
// basic_string<charT,traits,Allocator>&
|
||||
// basic_string<charT,traits,Allocator>&
|
||||
// append(const charT* s, size_type n);
|
||||
|
||||
#include <string>
|
||||
|
@@ -9,7 +9,7 @@
|
||||
|
||||
// <string>
|
||||
|
||||
// basic_string<charT,traits,Allocator>&
|
||||
// basic_string<charT,traits,Allocator>&
|
||||
// append(size_type n, charT c);
|
||||
|
||||
#include <string>
|
||||
|
@@ -9,7 +9,7 @@
|
||||
|
||||
// <string>
|
||||
|
||||
// basic_string<charT,traits,Allocator>&
|
||||
// basic_string<charT,traits,Allocator>&
|
||||
// append(const basic_string<charT,traits>& str);
|
||||
|
||||
#include <string>
|
||||
|
@@ -9,7 +9,7 @@
|
||||
|
||||
// <string>
|
||||
|
||||
// basic_string<charT,traits,Allocator>&
|
||||
// basic_string<charT,traits,Allocator>&
|
||||
// append(const basic_string<charT,traits>& str, size_type pos, size_type n);
|
||||
|
||||
#include <string>
|
||||
|
@@ -22,5 +22,5 @@ int main()
|
||||
s.assign({'a', 'b', 'c'});
|
||||
assert(s == "abc");
|
||||
}
|
||||
#endif
|
||||
#endif // _LIBCPP_MOVE
|
||||
}
|
||||
|
@@ -9,7 +9,7 @@
|
||||
|
||||
// <string>
|
||||
|
||||
// template<class InputIterator>
|
||||
// template<class InputIterator>
|
||||
// basic_string& assign(InputIterator first, InputIterator last);
|
||||
|
||||
#include <string>
|
||||
|
@@ -9,7 +9,7 @@
|
||||
|
||||
// <string>
|
||||
|
||||
// basic_string<charT,traits,Allocator>&
|
||||
// basic_string<charT,traits,Allocator>&
|
||||
// assign(const charT* s, size_type n);
|
||||
|
||||
#include <string>
|
||||
|
@@ -9,7 +9,7 @@
|
||||
|
||||
// <string>
|
||||
|
||||
// basic_string<charT,traits,Allocator>&
|
||||
// basic_string<charT,traits,Allocator>&
|
||||
// assign(basic_string<charT,traits>&& str);
|
||||
|
||||
#include <string>
|
||||
|
@@ -9,7 +9,7 @@
|
||||
|
||||
// <string>
|
||||
|
||||
// basic_string<charT,traits,Allocator>&
|
||||
// basic_string<charT,traits,Allocator>&
|
||||
// assign(size_type n, charT c);
|
||||
|
||||
#include <string>
|
||||
|
@@ -9,7 +9,7 @@
|
||||
|
||||
// <string>
|
||||
|
||||
// basic_string<charT,traits,Allocator>&
|
||||
// basic_string<charT,traits,Allocator>&
|
||||
// assign(const basic_string<charT,traits>& str);
|
||||
|
||||
#include <string>
|
||||
|
@@ -9,7 +9,7 @@
|
||||
|
||||
// <string>
|
||||
|
||||
// basic_string<charT,traits,Allocator>&
|
||||
// basic_string<charT,traits,Allocator>&
|
||||
// assign(const basic_string<charT,traits>& str, size_type pos, size_type n);
|
||||
|
||||
#include <string>
|
||||
|
@@ -9,7 +9,7 @@
|
||||
|
||||
// <string>
|
||||
|
||||
// basic_string<charT,traits,Allocator>&
|
||||
// basic_string<charT,traits,Allocator>&
|
||||
// erase(size_type pos = 0, size_type n = npos);
|
||||
|
||||
#include <string>
|
||||
|
@@ -23,5 +23,5 @@ int main()
|
||||
assert(i - s.begin() == 3);
|
||||
assert(s == "123abc456");
|
||||
}
|
||||
#endif
|
||||
#endif // _LIBCPP_MOVE
|
||||
}
|
||||
|
@@ -9,7 +9,7 @@
|
||||
|
||||
// <string>
|
||||
|
||||
// template<class InputIterator>
|
||||
// template<class InputIterator>
|
||||
// iterator insert(const_iterator p, InputIterator first, InputIterator last);
|
||||
|
||||
#include <string>
|
||||
|
@@ -9,7 +9,7 @@
|
||||
|
||||
// <string>
|
||||
|
||||
// basic_string<charT,traits,Allocator>&
|
||||
// basic_string<charT,traits,Allocator>&
|
||||
// insert(size_type pos, const charT* s);
|
||||
|
||||
#include <string>
|
||||
|
@@ -9,7 +9,7 @@
|
||||
|
||||
// <string>
|
||||
|
||||
// basic_string<charT,traits,Allocator>&
|
||||
// basic_string<charT,traits,Allocator>&
|
||||
// insert(size_type pos, const charT* s, size_type n);
|
||||
|
||||
#include <string>
|
||||
|
@@ -9,7 +9,7 @@
|
||||
|
||||
// <string>
|
||||
|
||||
// basic_string<charT,traits,Allocator>&
|
||||
// basic_string<charT,traits,Allocator>&
|
||||
// insert(size_type pos, size_type n, charT c);
|
||||
|
||||
#include <string>
|
||||
|
@@ -9,7 +9,7 @@
|
||||
|
||||
// <string>
|
||||
|
||||
// basic_string<charT,traits,Allocator>&
|
||||
// basic_string<charT,traits,Allocator>&
|
||||
// insert(size_type pos1, const basic_string& str);
|
||||
|
||||
#include <string>
|
||||
|
@@ -9,8 +9,8 @@
|
||||
|
||||
// <string>
|
||||
|
||||
// basic_string<charT,traits,Allocator>&
|
||||
// insert(size_type pos1, const basic_string<charT,traits,Allocator>& str,
|
||||
// basic_string<charT,traits,Allocator>&
|
||||
// insert(size_type pos1, const basic_string<charT,traits,Allocator>& str,
|
||||
// size_type pos2, size_type n);
|
||||
|
||||
#include <string>
|
||||
|
@@ -22,5 +22,5 @@ int main()
|
||||
s += {'a', 'b', 'c'};
|
||||
assert(s == "123abc");
|
||||
}
|
||||
#endif
|
||||
#endif // _LIBCPP_MOVE
|
||||
}
|
||||
|
@@ -9,7 +9,7 @@
|
||||
|
||||
// <string>
|
||||
|
||||
// basic_string<charT,traits,Allocator>&
|
||||
// basic_string<charT,traits,Allocator>&
|
||||
// operator+=(const basic_string<charT,traits,Allocator>& str);
|
||||
|
||||
#include <string>
|
||||
|
@@ -22,5 +22,5 @@ int main()
|
||||
s.replace(s.begin() + 3, s.begin() + 6, {'a', 'b', 'c'});
|
||||
assert(s == "123abc456");
|
||||
}
|
||||
#endif
|
||||
#endif // _LIBCPP_MOVE
|
||||
}
|
||||
|
@@ -9,7 +9,7 @@
|
||||
|
||||
// <string>
|
||||
|
||||
// template<class InputIterator>
|
||||
// template<class InputIterator>
|
||||
// basic_string&
|
||||
// replace(iterator i1, iterator i2, InputIterator j1, InputIterator j2);
|
||||
|
||||
|
@@ -9,7 +9,7 @@
|
||||
|
||||
// <string>
|
||||
|
||||
// basic_string<charT,traits,Allocator>&
|
||||
// basic_string<charT,traits,Allocator>&
|
||||
// replace(iterator i1, iterator i2, const charT* s);
|
||||
|
||||
#include <stdio.h>
|
||||
|
@@ -9,7 +9,7 @@
|
||||
|
||||
// <string>
|
||||
|
||||
// basic_string<charT,traits,Allocator>&
|
||||
// basic_string<charT,traits,Allocator>&
|
||||
// replace(iterator i1, iterator i2, const charT* s, size_type n);
|
||||
|
||||
#include <stdio.h>
|
||||
|
@@ -9,7 +9,7 @@
|
||||
|
||||
// <string>
|
||||
|
||||
// basic_string<charT,traits,Allocator>&
|
||||
// basic_string<charT,traits,Allocator>&
|
||||
// replace(iterator i1, iterator i2, size_type n, charT c);
|
||||
|
||||
#include <stdio.h>
|
||||
|
@@ -9,7 +9,7 @@
|
||||
|
||||
// <string>
|
||||
|
||||
// basic_string<charT,traits,Allocator>&
|
||||
// basic_string<charT,traits,Allocator>&
|
||||
// replace(iterator i1, iterator i2, const basic_string& str);
|
||||
|
||||
#include <stdio.h>
|
||||
|
@@ -9,7 +9,7 @@
|
||||
|
||||
// <string>
|
||||
|
||||
// basic_string<charT,traits,Allocator>&
|
||||
// basic_string<charT,traits,Allocator>&
|
||||
// replace(size_type pos, size_type n1, const charT* s);
|
||||
|
||||
#include <stdio.h>
|
||||
|
@@ -9,7 +9,7 @@
|
||||
|
||||
// <string>
|
||||
|
||||
// basic_string<charT,traits,Allocator>&
|
||||
// basic_string<charT,traits,Allocator>&
|
||||
// replace(size_type pos, size_type n1, const charT* s, size_type n2);
|
||||
|
||||
#include <stdio.h>
|
||||
|
@@ -9,7 +9,7 @@
|
||||
|
||||
// <string>
|
||||
|
||||
// basic_string<charT,traits,Allocator>&
|
||||
// basic_string<charT,traits,Allocator>&
|
||||
// replace(size_type pos, size_type n1, size_type n2, charT c);
|
||||
|
||||
#include <string>
|
||||
|
@@ -9,7 +9,7 @@
|
||||
|
||||
// <string>
|
||||
|
||||
// basic_string<charT,traits,Allocator>&
|
||||
// basic_string<charT,traits,Allocator>&
|
||||
// replace(size_type pos1, size_type n1, const basic_string<charT,traits,Allocator>& str);
|
||||
|
||||
#include <stdio.h>
|
||||
|
@@ -9,8 +9,8 @@
|
||||
|
||||
// <string>
|
||||
|
||||
// basic_string<charT,traits,Allocator>&
|
||||
// replace(size_type pos1, size_type n1, const basic_string<charT,traits,Allocator>& str,
|
||||
// basic_string<charT,traits,Allocator>&
|
||||
// replace(size_type pos1, size_type n1, const basic_string<charT,traits,Allocator>& str,
|
||||
// size_type pos2, size_type n2);
|
||||
|
||||
#include <stdio.h>
|
||||
|
Reference in New Issue
Block a user