[Solved] Can not understand the return of this function in C++

[ad_1]

It’s a reference to a pointer:

CheckList(Listfile*& Listitems,bool showSortList)
          ^^^^^^^^^ pointer to Listfile
                   ^ reference

you should study C++ better, this can be found in any decent C++ book.

2

[ad_2]

solved Can not understand the return of this function in C++