Menu

#include within namespace{} block

Yagna
2022-04-22
2022-04-22
  • Yagna

    Yagna - 2022-04-22

    We are using #include within namespace like the following

    namespace com {
    namespace test {

    class custom_list;
    class custom_map;
    class custom_buffer;
    template<typename t=""> class custom_t;</typename>

    include <bits custom_t.hpp=""></bits>

    include <bits custom_list_t.hpp=""></bits>

    include <bits custom_map_t.hpp=""></bits>

    #include <bits custom_buffer_t.hpp=""></bits>

    }
    }

    When running using 1.8.15 we got the documentation properly, This started failing after we moved to 1.9.3. Any way I could get this working.

     
  • Yagna

    Yagna - 2022-04-22

    namespace com {
    namespace test {

    class custom_list;
    class custom_map;
    class custom_buffer;
    template<typename t=""> class custom_t;</typename>

    include <bits custom_t.hpp=""></bits>

    include <bits custom_list_t.hpp=""></bits>

    include <bits custom_map_t.hpp=""></bits>

    include <bits custom_buffer_t.hpp=""></bits>

    }
    }

     

Log in to post a comment.