summaryrefslogtreecommitdiffstats
path: root/fnet/src/vespa/fnet/context.cpp
blob: 24456466c048fc2e0b229d57ebe53b27beb67003 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
// Copyright 2016 Yahoo Inc. 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, "");
}