Skip to content

Commit

Permalink
Remove _member_access from geometry (#1910)
Browse files Browse the repository at this point in the history
* It was difficult/too costly ensuring temporary this was correct when vecs contained in rects were accessed directly.
* Added semantics to `rect` and some utility functions.

Signed-off-by: Tin Švagelj <tin.svagelj@live.com>
  • Loading branch information
Caellian committed May 13, 2024
1 parent 968fc7f commit 2d50767
Show file tree
Hide file tree
Showing 11 changed files with 1,458 additions and 1,384 deletions.
5 changes: 4 additions & 1 deletion cmake/ConkyBuildOptions.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,10 @@ if(MAINTAINER_MODE)
endif(MAINTAINER_MODE)

# Always use libc++ when compiling w/ clang
add_compile_options($<$<COMPILE_LANG_AND_ID:CXX,Clang>:-stdlib=libc++>)
add_compile_options(
$<$<COMPILE_LANG_AND_ID:CXX,Clang>:-stdlib=libc++>
$<$<COMPILE_LANG_AND_ID:CXX,Clang>:-Wno-unknown-warning-option>
$<$<COMPILE_LANG_AND_ID:CXX,GCC>:-Wno-unknown-warning>)
add_link_options($<$<COMPILE_LANG_AND_ID:CXX,Clang>:-stdlib=libc++>)

option(CHECK_CODE_QUALITY "Check code formatting/quality with clang" false)
Expand Down
Loading

0 comments on commit 2d50767

Please sign in to comment.