docopt / docopt.cpp

C++11 port of docopt
Boost Software License 1.0
1.04k stars 146 forks source link

Add missing static keyword #133

Closed martinhansdk closed 4 years ago

martinhansdk commented 4 years ago

GCC complains about a missing declaration for this function when compiled with -Werror=missing-declarations. Adding a static keyword here fixes that.

jaredgrubb commented 4 years ago

Looks good! Thanks!