aboutsummaryrefslogtreecommitdiffstats
path: root/fnet/src/vespa/fnet/context.cpp
blob: e77c65c0826e91880294ff27e9b42f28d9f1f629 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include "context.h"
#include <cstdio>

void
FNET_Context::Print(uint32_t indent) {
    printf("%*sFNET_Context {\n", indent, "");
    printf("%*s  Value[INT]  : %d\n", indent, "", _value.INT);
    printf("%*s  Value[VOIDP]: %p\n", indent, "", _value.VOIDP);
    printf("%*s}\n", indent, "");
}