stack_trace.cpp (525B)
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 2 // Use of this source code is governed by a BSD-style license that can be 3 // found in the LICENSE file. 4 5 // This is a partial implementation of Chromium's source file 6 // base/debug/stack_trace.cc. 7 8 #include "stack_trace.h" 9 10 #include <ostream> 11 12 namespace base { 13 namespace debug { 14 15 std::ostream& operator<<(std::ostream& os, const StackTrace& s) { 16 os << "StackTrace::OutputToStream not implemented."; 17 return os; 18 } 19 20 } // namespace debug 21 } // namespace base