Skip to content

Commit

Permalink
try to make using statements backwards compatible
Browse files Browse the repository at this point in the history
  • Loading branch information
CamJN committed Jul 27, 2024
1 parent 27e7336 commit c06cda0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/libgetargv++.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
namespace Getargv {
namespace ffi {
#include <libgetargv.h>
using errno_t = ::errno_t;
using uint = ::uint;
using errno_t = errno_t;
using uint = uint;
} // namespace ffi

/** \brief This struct provides an iterable and printable representation of
Expand Down

0 comments on commit c06cda0

Please sign in to comment.