mirror of
https://codeberg.org/comaps/comaps
synced 2025-12-20 21:33:59 +00:00
Format all C++ and Java code via clang-format
Signed-off-by: Konstantin Pastbin <konstantin.pastbin@gmail.com>
This commit is contained in:
@@ -96,20 +96,17 @@ struct GenerateInfo
|
||||
LOG(LCRITICAL, ("Incorrect node_storage type:", type));
|
||||
}
|
||||
|
||||
std::string GetTmpFileName(std::string const & fileName,
|
||||
std::string const & ext = DATA_FILE_EXTENSION_TMP) const
|
||||
std::string GetTmpFileName(std::string const & fileName, std::string const & ext = DATA_FILE_EXTENSION_TMP) const
|
||||
{
|
||||
return base::JoinPath(m_tmpDir, fileName + ext);
|
||||
}
|
||||
|
||||
std::string GetTargetFileName(std::string const & fileName,
|
||||
std::string const & ext = DATA_FILE_EXTENSION) const
|
||||
std::string GetTargetFileName(std::string const & fileName, std::string const & ext = DATA_FILE_EXTENSION) const
|
||||
{
|
||||
return base::JoinPath(m_targetDir, fileName + ext);
|
||||
}
|
||||
|
||||
std::string GetIntermediateFileName(std::string const & fileName,
|
||||
std::string const & ext = "") const
|
||||
std::string GetIntermediateFileName(std::string const & fileName, std::string const & ext = "") const
|
||||
{
|
||||
return base::JoinPath(m_intermediateDir, fileName + ext);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user