mirror of https://github.com/aria2/aria2
util.cc: Remove uselss inline static
parent
b772aa6a5e
commit
50ac6afe36
|
@ -347,13 +347,11 @@ bool isCRLF(const char c)
|
||||||
|
|
||||||
namespace {
|
namespace {
|
||||||
|
|
||||||
inline static
|
|
||||||
bool isUtf8Tail(unsigned char ch)
|
bool isUtf8Tail(unsigned char ch)
|
||||||
{
|
{
|
||||||
return in(ch, 0x80u, 0xbfu);
|
return in(ch, 0x80u, 0xbfu);
|
||||||
}
|
}
|
||||||
|
|
||||||
inline static
|
|
||||||
bool inPercentEncodeMini(const unsigned char c)
|
bool inPercentEncodeMini(const unsigned char c)
|
||||||
{
|
{
|
||||||
return c > 0x20 && c < 0x7fu &&
|
return c > 0x20 && c < 0x7fu &&
|
||||||
|
|
Loading…
Reference in New Issue