Skip to content

Commit 35f7e39

Browse files
committed
Fixed missing newlines at ends of files and quoted a path.
1 parent 816660b commit 35f7e39

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

tools/repl/swift/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ endif()
2121
set(swift_compile_cmd "${LLDB_SWIFTC}"
2222
-resource-dir "${LLDB_PATH_TO_SWIFT_BUILD}/lib/swift"
2323
-module-cache-path "${module_cache_dir}"
24-
-I${CMAKE_CURRENT_SOURCE_DIR}/REPLTime)
24+
-I"${CMAKE_CURRENT_SOURCE_DIR}/REPLTime")
2525

2626
if(CMAKE_CROSSCOMPILING)
2727
set(swift_compile_cmd ${swift_compile_cmd} -target "${LLVM_HOST_TRIPLE}" -sdk "${CMAKE_SYSROOT}")

tools/repl/swift/REPLTime/REPLTime.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,4 @@ uint64_t __attribute__ ((always_inline)) REPL_mach_absolute_time() {
3535
return mach_absolute_time();
3636
}
3737

38-
#endif //REPL_TIME_H
38+
#endif //REPL_TIME_H
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
module REPLTime [extern_c] {
22
header "REPLTime.h"
33
export *
4-
}
4+
}

0 commit comments

Comments
 (0)