File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -154,19 +154,19 @@ template <typename... Args>
154154class GPUROOTDump
155155{
156156 public:
157- template <typename ... Args >
157+ template <typename ... Names >
158158 GPUd () void Fill (Args... args) const
159159 {
160160 }
161- template <typename ... Args >
162- GPUd () static GPUROOTDump<T >& get (Args... args)
161+ template <typename ... Names >
162+ GPUd () static GPUROOTDump<Args... >& get (Args... args)
163163 {
164- return *(GPUROOTDump<T >*)(size_t )(1024 ); // Will never be used, return just some reference, which must not be nullptr by specification
164+ return *(GPUROOTDump<Args... >*)(size_t )(1024 ); // Will never be used, return just some reference, which must not be nullptr by specification
165165 }
166- template <typename ... Args >
167- GPUd () static GPUROOTDump<T >& getNew (Args... args)
166+ template <typename ... Names >
167+ GPUd () static GPUROOTDump<Args... >& getNew (Args... args)
168168 {
169- return *(GPUROOTDump<T >*)(size_t )(1024 ); // Will never be used, return just some reference, which must not be nullptr by specification
169+ return *(GPUROOTDump<Args... >*)(size_t )(1024 ); // Will never be used, return just some reference, which must not be nullptr by specification
170170 }
171171};
172172#endif
You can’t perform that action at this time.
0 commit comments