// // Copyright 2018 The ANGLE Project Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. // // ImmutableStringBuilder.cpp: Stringstream-like utility for building pool allocated strings where // the maximum length is known in advance. // #include "compiler/translator/ImmutableStringBuilder.h" #include <stdio.h> namespace sh { ImmutableStringBuilder &ImmutableStringBuilder::operator<<(const ImmutableString &str) { … } ImmutableStringBuilder &ImmutableStringBuilder::operator<<(char c) { … } void ImmutableStringBuilder::appendDecimal(uint32_t u) { … } operator ImmutableString() } // namespace sh