1*6777b538SAndroid Build Coastguard Worker // Copyright 2023 The Chromium Authors 2*6777b538SAndroid Build Coastguard Worker // Use of this source code is governed by a BSD-style license that can be 3*6777b538SAndroid Build Coastguard Worker // found in the LICENSE file. 4*6777b538SAndroid Build Coastguard Worker 5*6777b538SAndroid Build Coastguard Worker #ifndef BASE_MACROS_UNIQUIFY_H_ 6*6777b538SAndroid Build Coastguard Worker #define BASE_MACROS_UNIQUIFY_H_ 7*6777b538SAndroid Build Coastguard Worker 8*6777b538SAndroid Build Coastguard Worker #include "base/macros/concat.h" 9*6777b538SAndroid Build Coastguard Worker 10*6777b538SAndroid Build Coastguard Worker // A macro to create a "unique" token name beginning with `name` by appending 11*6777b538SAndroid Build Coastguard Worker // the current line number. This is generally used inside other macros that need 12*6777b538SAndroid Build Coastguard Worker // to create temporaries while minimizing the likelihood of name conflicts. 13*6777b538SAndroid Build Coastguard Worker #define BASE_UNIQUIFY(name) BASE_CONCAT(name, __LINE__) 14*6777b538SAndroid Build Coastguard Worker 15*6777b538SAndroid Build Coastguard Worker #endif // BASE_MACROS_UNIQUIFY_H_ 16