Some repositories couldn't be updated, please check application logs for details.
BadCredentialsException: 401 {"message": "Bad credentials", "documentation_url": "https://docs.github.com/rest", "status": "401"}

aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/_posts/snippets/static_vs_inline_vs_unnamed_namespaces/unnamed_namespace_and_inline/main.cpp
blob: 7fbeb563b56ed5f1952f65824f7403d6b31b8d5b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#include "proxy.hpp"
#include "shared.hpp"

#include <iostream>

int main()
{
    std::cout << shared() << '\n';
    std::cout << proxy() << '\n';
    return 0;
}