aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/vespa/searchlib/transactionlog/nosyncproxy.cpp
blob: f68016f34405e986ed355479b922589f4b396855 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
#include "nosyncproxy.h"

namespace search::transactionlog {

NoSyncProxy::NoSyncProxy() { }

NoSyncProxy::~NoSyncProxy() { }


void
NoSyncProxy::sync(SerialNum syncTo)
{
    (void) syncTo;
}

}