| Index: courgette/memory_allocator.h
|
| ===================================================================
|
| --- courgette/memory_allocator.h (revision 79466)
|
| +++ courgette/memory_allocator.h (working copy)
|
| @@ -181,7 +181,9 @@
|
| MemoryAllocator() _THROW0() {
|
| }
|
|
|
| - explicit MemoryAllocator(const MemoryAllocator<T>& other) _THROW0() {
|
| + // We can't use an explicit constructor here, as dictated by our style guide.
|
| + // The implementation of basic_string in Visual Studio 2010 prevents this.
|
| + MemoryAllocator(const MemoryAllocator<T>& other) _THROW0() {
|
| }
|
|
|
| template<class OtherT>
|
|
|