﻿# V6029\. Possible incorrect order of arguments passed to method\.

The analyzer detected a suspicious sequence of arguments passed to a method\. Perhaps, some arguments are misplaced\. 

An example of suspicious code:

```cpp
void SetARGB(short A, short R, short G, short B) { .... }
void Foo(){
  short A = 0, R = 0, G = 0, B = 0; 
  ....
  SetARGB(A, R, B, G);
  ....
}
```

When defining the object color, the programmer accidentally swapped the blue and green color parameters\.

The fixed version of the code should look like this:

```cpp
SetARGB(A, R, G, B);
```