Skip to content

Commit a7273dc

Browse files
authored
Merge pull request #10 from l1amyi/master
Fix: The project contains header files, causing clangd to fail to load
2 parents 3a6709f + 20d56c2 commit a7273dc

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

uvconvertor.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -318,7 +318,8 @@ void uVConvertor::toCompileJson(std::string outPath,std::string extOptions)
318318
}
319319
m_argumentsList.pop_front();
320320

321-
j.push_back(j1);
321+
if (j1.contains("arguments"))
322+
j.push_back(j1);
322323
}
323324

324325

0 commit comments

Comments
 (0)