blob: 215095bc2739d3bf0fb8c102e3dd2a7546eeb300 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/**
* @file lllazy.cpp
* @author Nat Goodspeed
* @date 2009-01-28
* @brief Implementation for lllazy.
*
* $LicenseInfo:firstyear=2009&license=viewergpl$
* Copyright (c) 2009, Linden Research, Inc.
* $/LicenseInfo$
*/
// Precompiled header
#include "linden_common.h"
// associated header
#include "lllazy.h"
// STL headers
// std headers
// external library headers
// other Linden headers
// lllazy.h is presently header-only. This file exists only because our CMake
// test macro ADD_BUILD_TEST requires it.
int dummy = 0;
|