File tree 1 file changed +9
-9
lines changed
llvm/include/llvm/Support
1 file changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -107,7 +107,7 @@ namespace llvm {
107
107
108
108
// begin is not defined here in order to avoid usage of an undefined static
109
109
// data member, instead it's instantiated by LLVM_INSTANTIATE_REGISTRY.
110
- static iterator begin () { return iterator (Head); }
110
+ static iterator begin () { return iterator (Head); }
111
111
static iterator end () { return iterator (nullptr ); }
112
112
113
113
static iterator_range<iterator> entries () {
@@ -137,20 +137,20 @@ namespace llvm {
137
137
};
138
138
};
139
139
140
- template <typename T> typename Registry<T>::node *Registry<T>::Head = nullptr ;
141
- template <typename T> typename Registry<T>::node *Registry<T>::Tail = nullptr ;
140
+ template <typename T> typename Registry<T>::node *Registry<T>::Head = nullptr ;
141
+ template <typename T> typename Registry<T>::node *Registry<T>::Tail = nullptr ;
142
142
} // end namespace llvm
143
143
144
144
#ifdef _WIN32
145
145
// / Instantiate a registry class.
146
- #define LLVM_INSTANTIATE_REGISTRY (REGISTRY_CLASS ) \
147
- namespace llvm { \
148
- template class LLVM_ABI_EXPORT Registry<REGISTRY_CLASS::type>;\
146
+ #define LLVM_INSTANTIATE_REGISTRY (REGISTRY_CLASS ) \
147
+ namespace llvm { \
148
+ template class LLVM_ABI_EXPORT Registry<REGISTRY_CLASS::type>; \
149
149
}
150
150
#else
151
- #define LLVM_INSTANTIATE_REGISTRY (REGISTRY_CLASS ) \
152
- namespace llvm { \
153
- template class Registry <REGISTRY_CLASS>;\
151
+ #define LLVM_INSTANTIATE_REGISTRY (REGISTRY_CLASS ) \
152
+ namespace llvm { \
153
+ template class Registry <REGISTRY_CLASS>; \
154
154
}
155
155
#endif
156
156
You can’t perform that action at this time.
0 commit comments