diff options
Diffstat (limited to 'library/cpp/tld/tld.h')
-rw-r--r-- | library/cpp/tld/tld.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/library/cpp/tld/tld.h b/library/cpp/tld/tld.h index 9e241de090..7c2061717a 100644 --- a/library/cpp/tld/tld.h +++ b/library/cpp/tld/tld.h @@ -17,12 +17,12 @@ namespace NTld { inline bool InTld(const TStringBuf& host) { return IsTld(FindTld(host)); } - + // check if @s belongs to a "good" subset of reliable TLDs, defined in tld.cpp bool IsVeryGoodTld(const TStringBuf& tld); - + inline bool InVeryGoodTld(const TStringBuf& host) { return IsVeryGoodTld(FindTld(host)); } - -} + +} |