Clang: Add aliases FilePathViews and NativeFilePathViews

Change-Id: I6f32392693b286969a62d79c9c779e3a837f5cb4
Reviewed-by: Ivan Donchevskii <ivan.donchevskii@qt.io>
This commit is contained in:
Marco Bubke
2018-01-17 13:48:53 +01:00
parent 19984076ff
commit aefc8cd693

View File

@@ -29,6 +29,7 @@
#include <utils/smallstringview.h> #include <utils/smallstringview.h>
#include <algorithm> #include <algorithm>
#include <vector>
namespace ClangBackEnd { namespace ClangBackEnd {
@@ -105,4 +106,6 @@ private:
using FilePathView = AbstractFilePathView<'/'>; using FilePathView = AbstractFilePathView<'/'>;
using NativeFilePathView = AbstractFilePathView<'\\'>; using NativeFilePathView = AbstractFilePathView<'\\'>;
using FilePathViews = std::vector<FilePathView>;
using NativeFilePathViews = std::vector<NativeFilePathView>;
} }