add the ignore for used parameters
This commit is contained in:
		@@ -481,15 +481,15 @@ void PlugIn::OnGetTagItem(EuroScopePlugIn::CFlightPlan flightPlan, EuroScopePlug
 | 
				
			|||||||
        }
 | 
					        }
 | 
				
			||||||
        else {
 | 
					        else {
 | 
				
			||||||
            std::strcpy(itemString, "N/A");
 | 
					            std::strcpy(itemString, "N/A");
 | 
				
			||||||
            *colorCode = EuroScopePlugIn::TAG_COLOR_DEFAULT;
 | 
					 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    *colorCode = EuroScopePlugIn::TAG_COLOR_DEFAULT;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
void PlugIn::OnFunctionCall(int functionId, const char* itemString, POINT pt, RECT area) {
 | 
					void PlugIn::OnFunctionCall(int functionId, const char* itemString, POINT pt, RECT area) {
 | 
				
			||||||
    std::ignore = itemString;
 | 
					    std::ignore = itemString;
 | 
				
			||||||
    std::ignore = pt;
 | 
					    std::ignore = pt;
 | 
				
			||||||
    std::ignore = area;
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
    const auto radarTarget = this->RadarTargetSelectASEL();
 | 
					    const auto radarTarget = this->RadarTargetSelectASEL();
 | 
				
			||||||
    if (false == radarTarget.IsValid() || false == radarTarget.GetCorrelatedFlightPlan().IsValid())
 | 
					    if (false == radarTarget.IsValid() || false == radarTarget.GetCorrelatedFlightPlan().IsValid())
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user