Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(186)

Side by Side Diff: src/IceClFlags.h

Issue 1838753002: Subzero: Remove IceString. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Cleanup Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 //===- subzero/src/IceClFlags.h - Cl Flags for translation ------*- C++ -*-===// 1 //===- subzero/src/IceClFlags.h - Cl Flags for translation ------*- C++ -*-===//
2 // 2 //
3 // The Subzero Code Generator 3 // The Subzero Code Generator
4 // 4 //
5 // This file is distributed under the University of Illinois Open Source 5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details. 6 // License. See LICENSE.TXT for details.
7 // 7 //
8 //===----------------------------------------------------------------------===// 8 //===----------------------------------------------------------------------===//
9 /// 9 ///
10 /// \file 10 /// \file
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after
140 bool getGenerateUnitTestMessages() const { 140 bool getGenerateUnitTestMessages() const {
141 return !BuildDefs::dump() || GenerateUnitTestMessages; 141 return !BuildDefs::dump() || GenerateUnitTestMessages;
142 } 142 }
143 /// Set ClFlags::GenerateUnitTestMessages to a new value 143 /// Set ClFlags::GenerateUnitTestMessages to a new value
144 void setGenerateUnitTestMessages(bool NewValue) { 144 void setGenerateUnitTestMessages(bool NewValue) {
145 GenerateUnitTestMessages = NewValue; 145 GenerateUnitTestMessages = NewValue;
146 } 146 }
147 147
148 private: 148 private:
149 std::string AppName; 149 std::string AppName;
150
John 2016/03/29 14:23:15 optional: add the empty line back
Jim Stichnoth 2016/03/29 21:40:49 Done.
151 /// Initialized to false; not set by the command line. 150 /// Initialized to false; not set by the command line.
152 bool GenerateUnitTestMessages; 151 bool GenerateUnitTestMessages;
153 }; 152 };
154 153
155 } // end of namespace Ice 154 } // end of namespace Ice
156 155
157 #endif // SUBZERO_SRC_ICECLFLAGS_H 156 #endif // SUBZERO_SRC_ICECLFLAGS_H
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698