Skip to content

Commit 1ba3c4c

Browse files
committed
[TSAR, Analysis, Reader] Fix GCC compilation errors.
1 parent 42e23f1 commit 1ba3c4c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/Analysis/Reader/AnalysisReader.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ template<class Tag, class ExternalTag> void addToCache(ExternalTag Key,
203203
const trait::Info &Info, const trait::Loop &L, TraitCache &Cache) {
204204
for (auto I = L[Key].cbegin(), EI = L[Key].cend(); I != EI; ++I) {
205205
auto Var = createVar(getVariableIdx(I), Info);
206-
if (Var.get<Identifier>().empty())
206+
if (Var.template get<Identifier>().empty())
207207
continue;
208208
auto CacheItr = Cache.find(Var);
209209
if (CacheItr == Cache.end())

0 commit comments

Comments
 (0)