[clang][cmake] Remove extra brace
authorMohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com>
Fri, 9 Sep 2022 20:11:17 +0000 (00:41 +0430)
committerMohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com>
Sat, 10 Sep 2022 00:30:23 +0000 (05:00 +0430)
Remove the extra trailing brace from the local variable accessor.

Differential Revision: https://reviews.llvm.org/D133613

clang/cmake/modules/AddClang.cmake

index 21ac332..d952ff3 100644 (file)
@@ -70,7 +70,7 @@ macro(add_clang_library name)
         ${CLANG_SOURCE_DIR}/include/clang/${lib_path}/*.td
       )
       source_group("TableGen descriptions" FILES ${tds})
-      set_source_files_properties(${tds}} PROPERTIES HEADER_FILE_ONLY ON)
+      set_source_files_properties(${tds} PROPERTIES HEADER_FILE_ONLY ON)
 
       if(headers OR tds)
         set(srcs ${headers} ${tds})