Skip to content

Commit

Permalink
clar: stop including shellapi.h unnecessarily
Browse files Browse the repository at this point in the history
The `shellapi.h` header was included as of
clar-test/clar@136e763211aa, to have
`SHFileOperation()` declared so that it could be called.

However, clar-test/clar@5ce31b69b525 removed
that call, and therefore that `#include <shellapi.h>` is unnecessary.

It is also unwanted in Git because this project uses a subset of Git for
Windows' SDK in its CI builds that (for bandwidth reasons) excludes tons
of header files, including `shellapi.h`.

So let's remove it.

Signed-off-by: Johannes Schindelin <[email protected]>
  • Loading branch information
dscho committed Aug 20, 2024
1 parent 8f75469 commit 7e50e6b
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion t/unit-tests/clar/clar.c
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
#ifdef _WIN32
# include <windows.h>
# include <io.h>
# include <shellapi.h>
# include <direct.h>

# define _MAIN_CC __cdecl
Expand Down

0 comments on commit 7e50e6b

Please sign in to comment.