]> git.ipfire.org Git - thirdparty/squid.git/blame - src/tests/stub_store_stats.cc
Source Format Enforcement (#532)
[thirdparty/squid.git] / src / tests / stub_store_stats.cc
CommitLineData
4e0938ef 1/*
77b1029d 2 * Copyright (C) 1996-2020 The Squid Software Foundation and contributors
4e0938ef
AJ
3 *
4 * Squid software is distributed under GPLv2+ license and includes
5 * contributions from numerous individuals and organizations.
6 * Please see the COPYING and CONTRIBUTORS files for details.
7 */
8
582c2af2 9#include "squid.h"
93bc1434
AR
10
11#define STUB_API "StoreStats.cc"
12#include "tests/STUB.h"
13
14#include "StoreStats.h"
15#include <cstring>
16
93bc1434
AR
17StoreInfoStats &
18StoreInfoStats::operator +=(const StoreInfoStats &stats) STUB_RETVAL(*this)
19
20StoreIoStats::StoreIoStats()
21{
22 // we have to implement this one because tests/stub_store.cc
23 // has a StoreIoStats global
24 memset(this, 0, sizeof(*this));
25}
f53969cc 26