[PATCH] D133613: [clang][cmake] Remove extra brace

Mohammed Keyvanzadeh via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Fri Sep 9 13:24:52 PDT 2022


VoltrexMaster created this revision.
VoltrexMaster added reviewers: phosek, Ericson2314.
Herald added a subscriber: mgorny.
Herald added a project: All.
VoltrexMaster requested review of this revision.
Herald added a project: clang.
Herald added a subscriber: cfe-commits.

Remove the extra trailing brace from the local variable accessor.


Repository:
  rG LLVM Github Monorepo

https://reviews.llvm.org/D133613

Files:
  clang/cmake/modules/AddClang.cmake


Index: clang/cmake/modules/AddClang.cmake
===================================================================
--- clang/cmake/modules/AddClang.cmake
+++ clang/cmake/modules/AddClang.cmake
@@ -70,7 +70,7 @@
         ${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})


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D133613.459182.patch
Type: text/x-patch
Size: 547 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20220909/ef7932a5/attachment.bin>


More information about the cfe-commits mailing list