Skip to content
Snippets Groups Projects
Commit 83559ffd authored by Henrik Stolzmann's avatar Henrik Stolzmann
Browse files

Fixed warning: "unused-function" "FillSonPaths"

Added a preprocessor if conditon around the definition of "FillSonPaths"
because the only use in this file is contained in such an if condition.
````
 #ifdef __THREEDIM__
static void FillSonPaths (MGIO_RR_RULE *rule)
{

 ...

}
 #endif
````

````
        #ifdef __THREEDIM__
  /* 2D: not even in rm */
  /* son path */
  FillSonPaths(mr);
        #endif
````
parent cf8fcc15
No related branches found
No related tags found
1 merge request!127Fix warnings unused function
Loading
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