Skip to content

Commit c9a1cb9

Browse files
committed
format code
1 parent eab0cc9 commit c9a1cb9

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

source/slang/slang-options.cpp

+5-4
Original file line numberDiff line numberDiff line change
@@ -1837,8 +1837,9 @@ SlangResult OptionsParser::_parseReferenceModule(const CommandLineArg& arg)
18371837

18381838
// In addition to adding the module to the request, we also add to the options set, because
18391839
// the same options parser is also used for IGlobalSession::parseCommandLineArguments, which
1840-
// parses options via a dummy request that is destroyed once the command line options are obtained.
1841-
// Therefore, also add the option here so that IGlobalSession::parseCommandLineArguments can return them.
1840+
// parses options via a dummy request that is destroyed once the command line options are
1841+
// obtained. Therefore, also add the option here so that
1842+
// IGlobalSession::parseCommandLineArguments can return them.
18421843
m_requestImpl->getLinkage()->m_optionSet.add(
18431844
CompilerOptionName::ReferenceModule,
18441845
referenceModuleName.value);
@@ -2776,8 +2777,8 @@ SlangResult OptionsParser::_parse(int argc, char const* const* argv)
27762777
break;
27772778
}
27782779
case OptionKind::ReferenceModule:
2779-
// Add module to the (front end) compile request
2780-
SLANG_RETURN_ON_FAIL(_parseReferenceModule(arg));
2780+
// Add module to the (front end) compile request
2781+
SLANG_RETURN_ON_FAIL(_parseReferenceModule(arg));
27812782
break;
27822783
case OptionKind::Version:
27832784
{

0 commit comments

Comments
 (0)