aboutsummaryrefslogtreecommitdiffstats
path: root/vespalib/src/vespa/vespalib/util/runnable.cpp
blob: 3b75efe93f64a34a7ef5be4b86f3589d76365d68 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright Yahoo. 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