michael@0: // michael@0: // Copyright (c) 2012 The ANGLE Project Authors. All rights reserved. michael@0: // Use of this source code is governed by a BSD-style license that can be michael@0: // found in the LICENSE file. michael@0: // michael@0: michael@0: #ifndef COMPILER_PRAGMA_H_ michael@0: #define COMPILER_PRAGMA_H_ michael@0: michael@0: struct TPragma { michael@0: // By default optimization is turned on and debug is turned off. michael@0: TPragma() : optimize(true), debug(false) { } michael@0: TPragma(bool o, bool d) : optimize(o), debug(d) { } michael@0: michael@0: bool optimize; michael@0: bool debug; michael@0: }; michael@0: michael@0: #endif // COMPILER_PRAGMA_H_