michael@0: // michael@0: // Copyright (c) 2011 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: #include "Macro.h" michael@0: michael@0: #include "Token.h" michael@0: michael@0: namespace pp michael@0: { michael@0: michael@0: bool Macro::equals(const Macro& other) const michael@0: { michael@0: return (type == other.type) && michael@0: (name == other.name) && michael@0: (parameters == other.parameters) && michael@0: (replacements == other.replacements); michael@0: } michael@0: michael@0: } // namespace pp michael@0: