Skip to content

Commit

Permalink
msvcgrr
Browse files Browse the repository at this point in the history
  • Loading branch information
baconpaul committed Jun 10, 2024
1 parent 5ae3918 commit 9d5fe9c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion tests/clap-first-example/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ project(clap-first-distortion)

add_library(clap-first-distortion-base STATIC distortion_clap.cpp)
target_link_libraries(clap-first-distortion-base PUBLIC clap)
target_compile_options(clap-first-distortion-base PRIVATE _USE_MATH_DEFINES=1)

add_library(${PROJECT_NAME} MODULE
distortion_clap_entry.cpp
Expand Down
4 changes: 2 additions & 2 deletions tests/clap-first-example/distortion_clap.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -426,8 +426,8 @@ static clap_process_status c99dist_process(const struct clap_plugin *plugin,
break;
case FOLD:
{
tl = sin(2.0 * M_PI * tl);
tr = sin(2.0 * M_PI * tr);
tl = sin(2.0 * 3.14159265 * tl);
tr = sin(2.0 * 3.14159265 * tr);
}
break;
}
Expand Down

0 comments on commit 9d5fe9c

Please sign in to comment.