aboutsummaryrefslogtreecommitdiffstats
path: root/vespalib/src/vespa/vespalib/util/destructor_callbacks.cpp
blob: badcd319985dad8c69e688da7d69dba34e73b128 (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 "destructor_callbacks.h"
#include "gate.h"

namespace vespalib {

GateCallback::~GateCallback() {
    _gate.countDown();
}

}