Bug 1188211 - Fix more constructors in IPC; r=billm

This commit is contained in:
Ehsan Akhgari 2015-07-27 21:16:49 -04:00
parent 85cda505f8
commit 56131e371e

View File

@ -85,7 +85,7 @@ class StackAllocator : public std::allocator<T> {
// TODO: If we were fancy pants, perhaps we could share storage
// iff sizeof(T) == sizeof(U).
template<typename U, size_t other_capacity>
StackAllocator(const StackAllocator<U, other_capacity>& other)
explicit StackAllocator(const StackAllocator<U, other_capacity>& other)
: source_(NULL) {
}