aboutsummaryrefslogtreecommitdiffstats
path: root/vespalib/src/vespa/vespalib/util/runnable.cpp
blob: df74236f578f7ee48db460532679f7c5a0a4bf2b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include "runnable.h"

namespace vespalib {

int
Runnable::default_init_function(Runnable &target)
{
    target.run();
    return 1;
}

} // namespace vespalib