932ac59bf22587ffe869013ccfa5e259c7705475
[folly.git] / folly / test / function_benchmark / test_functions.cpp
1 // Copyright 2004-present Facebook.  All rights reserved.
2 #include "folly/test/function_benchmark/test_functions.h"
3
4 /*
5  * These functions are defined in a separate file so that
6  * gcc won't be able to inline them.
7  */
8
9 void doNothing() {
10 }
11
12 void TestClass::doNothing() {
13 }
14
15 VirtualClass::~VirtualClass() {
16 }
17
18 void VirtualClass::doNothing() {
19 };