From 1004f50bd7d0032411a564ad4625055e982902ea Mon Sep 17 00:00:00 2001 From: jsmall-nvidia Date: Wed, 24 Apr 2019 11:18:58 -0400 Subject: * Make Path:: use lowerCamel method names as per coding standard (#952) * Small improvements to make closer to standard * GetDirectoryName -> getParentDirectory - previous method name's action was somewhat unclear, hopefully this is better --- tools/slang-test/options.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tools/slang-test/options.cpp') diff --git a/tools/slang-test/options.cpp b/tools/slang-test/options.cpp index 693d1939c..17e424127 100644 --- a/tools/slang-test/options.cpp +++ b/tools/slang-test/options.cpp @@ -294,10 +294,10 @@ static bool _isSubCommand(const char* arg) if (optionsOut->binDir.Length() == 0) { // If the binDir isn't set try using the path to the executable - String exePath = Path::GetExecutablePath(); + String exePath = Path::getExecutablePath(); if (exePath.Length()) { - optionsOut->binDir = Path::GetDirectoryName(exePath); + optionsOut->binDir = Path::getParentDirectory(exePath); } } -- cgit v1.2.3