[libcxx][NFC] Strip trailing whitespace, fix typo.
Cr-Mirrored-From: sso://chromium.googlesource.com/_direct/external/github.com/llvm/llvm-project
Cr-Mirrored-Commit: 7c9844b66e5e0cca1424e0688b4384d4ec23325a
diff --git a/src/thread.cpp b/src/thread.cpp
index cee778f..967a537 100644
--- a/src/thread.cpp
+++ b/src/thread.cpp
@@ -139,7 +139,7 @@
{
public:
typedef T value_type;
-
+
T* allocate(size_t __n)
{return static_cast<T*>(::operator new(__n * sizeof(T)));}
void deallocate(T* __p, size_t) {::operator delete(static_cast<void*>(__p));}