Skip to content

Commit 22acd3b

Browse files
committed
Fix
Signed-off-by: Jiang, Zhiwei <zhiwei.jiang@intel.com>
1 parent 3f415dc commit 22acd3b

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

clang/lib/DPCT/AnalysisInfo.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -327,10 +327,10 @@ class FreeQueriesInfo {
327327
static const FreeQueriesNames &getNames(FreeQueriesKind);
328328
static std::shared_ptr<FreeQueriesInfo> getInfo(const FunctionDecl *);
329329
template <typename T>
330-
static void printFreeQueriesFunctionName(
331-
llvm::raw_ostream &OS, FreeQueriesKind K, T Dimension,
332-
typename std::enable_if<std::is_same_v<T, unsigned> ||
333-
std::is_same_v<T, std::string>>::type * = 0) {
330+
static typename std::enable_if<std::is_same_v<T, unsigned> ||
331+
std::is_same_v<T, std::string>>::type
332+
printFreeQueriesFunctionName(llvm::raw_ostream &OS, FreeQueriesKind K,
333+
T Dimension) {
334334
OS << getNames(K).FreeQueriesFuncName;
335335
if (K != FreeQueriesKind::SubGroup) {
336336
OS << '<';

0 commit comments

Comments
 (0)