namespace PT renamed to pt

This commit is contained in:
2021-05-20 16:11:12 +02:00
parent 6f50626dda
commit b574289054
35 changed files with 628 additions and 641 deletions

View File

@@ -45,13 +45,10 @@
namespace pt
{
// remove me in the future (when PT will be changed to pt)
using namespace PT;
namespace pt_mainoptions_tests
{
struct MainOptionsParserOutputTest
{
MainOptionsParser::Status status;
@@ -83,7 +80,7 @@ bool has_space_in_str(const char * arg)
{
while( *arg )
{
if( PT::is_white((wchar_t)*arg) )
if( is_white((wchar_t)*arg) )
return true;
arg += 1;