ipkn / crow

Crow is very fast and easy to use C++ micro web framework (inspired by Python Flask)
BSD 3-Clause "New" or "Revised" License
7.48k stars 891 forks source link

Larger integer sizes in routes #167

Open gri1n opened 8 years ago

gri1n commented 8 years ago

Is there any reason why only int and uint are supported in routes and not the larger sized integers?

ipkn commented 8 years ago

int and uint mapped to int64_t and uint64_t. If crow can't handle large integer value, it must be bug. Does your app have that bug?