d6569159b7
Move the generic dummy implementation of TraceEvent::emitOneRecording() to a source file of its own. (That is the one which is used in test and tool executables.) Signed-off-by: Tor Lillqvist <tml@collabora.com> Change-Id: I81cab07e5a6852b42d278a5446c13c3825cf546e
18 lines
580 B
C++
18 lines
580 B
C++
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; fill-column: 100 -*- */
|
|
/*
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
*/
|
|
|
|
// Compile and link this into test and utility executables that need it to link
|
|
|
|
#include <common/TraceEvent.hpp>
|
|
|
|
void TraceEvent::emitOneRecording(const std::string &recording)
|
|
{
|
|
// Dummy.
|
|
(void) recording;
|
|
}
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|