From fd62cf5a031d0da54a040117f5808c041b84ca6a Mon Sep 17 00:00:00 2001 From: sam Date: Mon, 19 Nov 2018 12:53:00 -0800 Subject: [PATCH] changed concate function name to concat --- include/vsg/io/FileSystem.h | 2 +- src/vsg/io/FileSystem.cpp | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/include/vsg/io/FileSystem.h b/include/vsg/io/FileSystem.h index ff7189220..594aaa570 100644 --- a/include/vsg/io/FileSystem.h +++ b/include/vsg/io/FileSystem.h @@ -30,7 +30,7 @@ namespace vsg extern VSG_DECLSPEC Path fileExtension(const Path& path); - extern VSG_DECLSPEC Path concatePaths(const Path& left, const Path& right); + extern VSG_DECLSPEC Path concatPaths(const Path& left, const Path& right); extern VSG_DECLSPEC Path findFile(const Path& filename, const Paths& paths); diff --git a/src/vsg/io/FileSystem.cpp b/src/vsg/io/FileSystem.cpp index 85c07e590..089944cb9 100644 --- a/src/vsg/io/FileSystem.cpp +++ b/src/vsg/io/FileSystem.cpp @@ -77,7 +77,7 @@ Path vsg::fileExtension(const Path& path) return path.substr(dot + 1); } -Path vsg::concatePaths(const Path& left, const Path& right) +Path vsg::concatPaths(const Path& left, const Path& right) { if (left.empty()) { @@ -103,7 +103,7 @@ Path vsg::findFile(const Path& filename, const Paths& paths) { for (auto path : paths) { - Path fullpath = concatePaths(path, filename); + Path fullpath = concatPaths(path, filename); if (fileExists(fullpath)) { return fullpath;