Skip to content

Commit

Permalink
chore: change exception type to be more clear
Browse files Browse the repository at this point in the history
  • Loading branch information
Hazer committed Jun 5, 2024
1 parent 9d0cf75 commit 373ef2c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/platform/windows/input.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -560,7 +560,7 @@ namespace platf {

util::point_t
get_mouse_loc(input_t &input) {

Check warning on line 562 in src/platform/windows/input.cpp

View check run for this annotation

Codecov / codecov/patch

src/platform/windows/input.cpp#L562

Added line #L562 was not covered by tests
throw std::exception(); // TODO "not implemented"
throw std::runtime_error("not implemented");
// TODO: Tests are failing, something wrong here?
// syncThreadDesktop();
POINT p;
Expand Down

0 comments on commit 373ef2c

Please sign in to comment.