aboutsummaryrefslogtreecommitdiffstats
path: root/fnet/src/vespa/fnet/context.cpp
blob: 8b9f413c0077000c3a8c0196f84adf5e86328b66 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
// Copyright Vespa.ai. 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, "");
}