Skip to content
Snippets Groups Projects
Commit 39939cac authored by Manuel Grizonnet's avatar Manuel Grizonnet
Browse files

COMP: avoid >> in nested templates again

parent e8e6d7dd
No related branches found
No related tags found
No related merge requests found
......@@ -75,7 +75,7 @@ public:
bool IsValidSensorModel() const;
/** Deburst metadata if possible and return lines to keep in image file */
bool Deburst(std::vector<std::pair<unsigned long, unsigned long>> & lines);
bool Deburst(std::vector<std::pair<unsigned long, unsigned long> > & lines);
static bool ImageLineToDeburstLine(const std::vector<std::pair<unsigned long,unsigned long> >& lines, unsigned long imageLine, unsigned long & deburstLine);
......
......@@ -86,7 +86,7 @@ bool SarSensorModelAdapter::IsValidSensorModel() const
return m_SensorModel.get() != ITK_NULLPTR;
}
bool SarSensorModelAdapter::Deburst(std::vector<std::pair<unsigned long, unsigned long>> & lines)
bool SarSensorModelAdapter::Deburst(std::vector<std::pair<unsigned long, unsigned long> > & lines)
{
if(m_SensorModel.get() != ITK_NULLPTR)
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment