mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-26 18:42:41 +01:00
merge some changes from develop branch; modernize and clean-up code; remove support for compiling without POCO_WIN32_UTF8
This commit is contained in:
@@ -31,8 +31,8 @@ namespace Poco {
|
||||
class Foundation_API TraverseBase
|
||||
{
|
||||
public:
|
||||
typedef std::stack<DirectoryIterator> Stack;
|
||||
typedef std::function<UInt16(const Stack&)> DepthFun;
|
||||
using Stack = std::stack<DirectoryIterator>;
|
||||
using DepthFun = std::function<UInt16(const Stack&)>;
|
||||
|
||||
enum
|
||||
{
|
||||
@@ -82,7 +82,7 @@ private:
|
||||
SiblingsFirstTraverse(const SiblingsFirstTraverse&);
|
||||
SiblingsFirstTraverse& operator=(const SiblingsFirstTraverse&);
|
||||
|
||||
std::stack<std::queue<std::string> > _dirsStack;
|
||||
std::stack<std::queue<std::string>> _dirsStack;
|
||||
};
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user