Doxygen não documentando a função principal em main.cpp

Eu tenho um main.cpp que contém uma estrutura, algumas constantes globais e uma função principal.

Eu executei o doxygen e a única documentação que estou obtendo na saída index.html é para o meu struct.

Eu quero doxygen para documentar nesse arquivo index.html meu main () também. O que estou fazendo incorretamente?

    /// Definition of Pi
    const auto Pi = 3.141592653589793238462643383279502884197169399;

    /// \struct myStruc
    /// \brief myStruc description
    ///
    struct myStruc
    {
         /// Comments inside myStruc
    };

    /// \file

    /// \brief  Main function
    /// \param  argc An integer argument count of the command line arguments
    /// \param  argv An argument vector of the command line arguments
    /// \return an integer 0 upon exit success
    int main(int argc, char** argv)
    {
        /// Comments I would like to be documented in as well
        return 0;
    }

questionAnswers(4)

yourAnswerToTheQuestion