mirror of
https://github.com/mat007/turtle.git
synced 2026-06-22 12:13:43 +00:00
Fixed regression
git-svn-id: https://svn.code.sf.net/p/turtle/code/trunk@665 860be788-9bd5-4423-9f1e-828f051e677b
This commit is contained in:
parent
24530c4e3c
commit
c697b48802
7 changed files with 76 additions and 24 deletions
18
test/undefined.cpp
Normal file
18
test/undefined.cpp
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
// http://turtle.sourceforge.net
|
||||
//
|
||||
// Copyright Mathieu Champlon 2013
|
||||
//
|
||||
// Distributed under the Boost Software License, Version 1.0.
|
||||
// (See accompanying file LICENSE_1_0.txt or copy at
|
||||
// http://www.boost.org/LICENSE_1_0.txt)
|
||||
|
||||
#include "undefined.hpp"
|
||||
|
||||
struct undefined
|
||||
{};
|
||||
|
||||
undefined& get_undefined()
|
||||
{
|
||||
static undefined u;
|
||||
return u;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue