Skip to content

Commit

Permalink
Fix various spaces on end of lines
Browse files Browse the repository at this point in the history
  • Loading branch information
ilya-fedin authored and john-preston committed Sep 2, 2022
1 parent 0638ec7 commit b9f1b60
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion linux_wayland_helper/linux_wayland_helper.cpp
Expand Up @@ -647,7 +647,7 @@ struct wl_proxy *wl_proxy_marshal_flags(
args,
interface,
version);

if (flags & WL_MARSHAL_FLAG_DESTROY) {
wl_proxy_destroy(proxy);
}
Expand Down
2 changes: 1 addition & 1 deletion target_link_frameworks.cmake
Expand Up @@ -12,7 +12,7 @@ function(target_link_frameworks target_name)
set(private_frameworks "")
set(public_frameworks "")
set(interface_frameworks "")
foreach (entry ${list})
foreach (entry ${list})
if (${entry} STREQUAL "PRIVATE" OR ${entry} STREQUAL "PUBLIC" OR ${entry} STREQUAL "INTERFACE")
set(writing_now ${entry})
else()
Expand Down
6 changes: 3 additions & 3 deletions validate_d3d_compiler.cmake
Expand Up @@ -21,7 +21,7 @@ function(validate_d3d_compiler target_name)
set(modules_hash_loc ${CMAKE_BINARY_DIR}/modules/${modules_subdir})
set(modules_debug_loc ${CMAKE_BINARY_DIR}/Debug/modules/${modules_subdir})
set(modules_release_loc ${CMAKE_BINARY_DIR}/Release/modules/${modules_subdir})

set(key_path ${modules_hash_loc}/d3d/d3dcompiler_47)
set(module_debug_path ${modules_debug_loc}/d3d)
set(module_release_path ${modules_release_loc}/d3d)
Expand All @@ -39,7 +39,7 @@ function(validate_d3d_compiler target_name)
if (NOT "${key_length}" STREQUAL "32"
OR NOT EXISTS ${module_debug_path}/d3dcompiler_47.dll
OR NOT EXISTS ${module_release_path}/d3dcompiler_47.dll)

if ("${windows_sdk_loc}" STREQUAL "")
validate_d3d_error("Could not find Windows SDK.")
return()
Expand All @@ -66,7 +66,7 @@ function(validate_d3d_compiler target_name)
file(MAKE_DIRECTORY ${modules_release_loc}/d3d)
file(COPY ${sdk_compiler} DESTINATION ${module_release_path})

file(MAKE_DIRECTORY ${modules_hash_loc}/d3d)
file(MAKE_DIRECTORY ${modules_hash_loc}/d3d)
file(WRITE ${key_path} ${key})
endif()

Expand Down

0 comments on commit b9f1b60

Please sign in to comment.