Skip to content
Snippets Groups Projects
Commit 11b0d70b authored by Kutalmış Berçin's avatar Kutalmış Berçin
Browse files

COMP: use the template disambiguator for dependent names (clang-9.0.1)

parent 9b30e4fd
Branches
Tags
No related merge requests found
......@@ -305,7 +305,8 @@ void Foam::fv::SemiImplicitSource<Type>::addSup
// Restore dimension checking
dimensionSet::checking(oldDimChecking);
const ExprResultType* ptr = driver.isResultType<ExprResultType>();
const ExprResultType* ptr =
driver.template isResultType<ExprResultType>();
if (!ptr)
{
......@@ -430,7 +431,8 @@ void Foam::fv::SemiImplicitSource<Type>::addSup
// Restore dimension checking
dimensionSet::checking(oldDimChecking);
const ExprResultType* ptr = driver.isResultType<ExprResultType>();
const ExprResultType* ptr =
driver.template isResultType<ExprResultType>();
if (!ptr)
{
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment