mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-07-16 09:05:08 +01:00
(svn r27003) -Cleanup: fix the use of spaces and asterices "around" some comments
This commit is contained in:
parent
fddeeb5e49
commit
771dcf3b7b
57
src/3rdparty/squirrel/include/squirrel.h
vendored
57
src/3rdparty/squirrel/include/squirrel.h
vendored
@ -1,33 +1,32 @@
|
|||||||
/*
|
/*
|
||||||
Copyright (c) 2003-2011 Alberto Demichelis
|
* Copyright (c) 2003-2011 Alberto Demichelis
|
||||||
|
*
|
||||||
This software is provided 'as-is', without any
|
* This software is provided 'as-is', without any
|
||||||
express or implied warranty. In no event will the
|
* express or implied warranty. In no event will the
|
||||||
authors be held liable for any damages arising from
|
* authors be held liable for any damages arising from
|
||||||
the use of this software.
|
* the use of this software.
|
||||||
|
*
|
||||||
Permission is granted to anyone to use this software
|
* Permission is granted to anyone to use this software
|
||||||
for any purpose, including commercial applications,
|
* for any purpose, including commercial applications,
|
||||||
and to alter it and redistribute it freely, subject
|
* and to alter it and redistribute it freely, subject
|
||||||
to the following restrictions:
|
* to the following restrictions:
|
||||||
|
*
|
||||||
1. The origin of this software must not be
|
* 1. The origin of this software must not be
|
||||||
misrepresented; you must not claim that
|
* misrepresented; you must not claim that
|
||||||
you wrote the original software. If you
|
* you wrote the original software. If you
|
||||||
use this software in a product, an
|
* use this software in a product, an
|
||||||
acknowledgment in the product
|
* acknowledgment in the product
|
||||||
documentation would be appreciated but is
|
* documentation would be appreciated but is
|
||||||
not required.
|
* not required.
|
||||||
|
*
|
||||||
2. Altered source versions must be plainly
|
* 2. Altered source versions must be plainly
|
||||||
marked as such, and must not be
|
* marked as such, and must not be
|
||||||
misrepresented as being the original
|
* misrepresented as being the original
|
||||||
software.
|
* software.
|
||||||
|
*
|
||||||
3. This notice may not be removed or
|
* 3. This notice may not be removed or
|
||||||
altered from any source distribution.
|
* altered from any source distribution.
|
||||||
|
*/
|
||||||
*/
|
|
||||||
#ifndef _SQUIRREL_H_
|
#ifndef _SQUIRREL_H_
|
||||||
#define _SQUIRREL_H_
|
#define _SQUIRREL_H_
|
||||||
|
|
||||||
|
4
src/3rdparty/squirrel/squirrel/sqapi.cpp
vendored
4
src/3rdparty/squirrel/squirrel/sqapi.cpp
vendored
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
see copyright notice in squirrel.h
|
* see copyright notice in squirrel.h
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "../../../stdafx.h"
|
#include "../../../stdafx.h"
|
||||||
|
|
||||||
|
10
src/3rdparty/squirrel/squirrel/sqbaselib.cpp
vendored
10
src/3rdparty/squirrel/squirrel/sqbaselib.cpp
vendored
@ -1,8 +1,10 @@
|
|||||||
/*
|
/*
|
||||||
see copyright notice in squirrel.h
|
* see copyright notice in squirrel.h
|
||||||
*/
|
*/
|
||||||
/* Needs to be first due to a squirrel header defining type() and type()
|
/*
|
||||||
* being used in some versions of the headers included by algorithm. */
|
* Needs to be first due to a squirrel header defining type() and type()
|
||||||
|
* being used in some versions of the headers included by algorithm.
|
||||||
|
*/
|
||||||
|
|
||||||
#include "../../../stdafx.h"
|
#include "../../../stdafx.h"
|
||||||
|
|
||||||
|
4
src/3rdparty/squirrel/squirrel/sqclass.cpp
vendored
4
src/3rdparty/squirrel/squirrel/sqclass.cpp
vendored
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
see copyright notice in squirrel.h
|
* see copyright notice in squirrel.h
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "../../../stdafx.h"
|
#include "../../../stdafx.h"
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
see copyright notice in squirrel.h
|
* see copyright notice in squirrel.h
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "../../../stdafx.h"
|
#include "../../../stdafx.h"
|
||||||
|
|
||||||
|
4
src/3rdparty/squirrel/squirrel/sqdebug.cpp
vendored
4
src/3rdparty/squirrel/squirrel/sqdebug.cpp
vendored
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
see copyright notice in squirrel.h
|
* see copyright notice in squirrel.h
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "../../../stdafx.h"
|
#include "../../../stdafx.h"
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
see copyright notice in squirrel.h
|
* see copyright notice in squirrel.h
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "../../../stdafx.h"
|
#include "../../../stdafx.h"
|
||||||
|
|
||||||
|
4
src/3rdparty/squirrel/squirrel/sqlexer.cpp
vendored
4
src/3rdparty/squirrel/squirrel/sqlexer.cpp
vendored
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
see copyright notice in squirrel.h
|
* see copyright notice in squirrel.h
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "../../../stdafx.h"
|
#include "../../../stdafx.h"
|
||||||
|
|
||||||
|
4
src/3rdparty/squirrel/squirrel/sqmem.cpp
vendored
4
src/3rdparty/squirrel/squirrel/sqmem.cpp
vendored
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
see copyright notice in squirrel.h
|
* see copyright notice in squirrel.h
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "../../../stdafx.h"
|
#include "../../../stdafx.h"
|
||||||
|
|
||||||
|
4
src/3rdparty/squirrel/squirrel/sqobject.cpp
vendored
4
src/3rdparty/squirrel/squirrel/sqobject.cpp
vendored
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
see copyright notice in squirrel.h
|
* see copyright notice in squirrel.h
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "../../../stdafx.h"
|
#include "../../../stdafx.h"
|
||||||
|
|
||||||
|
12
src/3rdparty/squirrel/squirrel/sqstate.cpp
vendored
12
src/3rdparty/squirrel/squirrel/sqstate.cpp
vendored
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
see copyright notice in squirrel.h
|
* see copyright notice in squirrel.h
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "../../../stdafx.h"
|
#include "../../../stdafx.h"
|
||||||
|
|
||||||
@ -487,10 +487,10 @@ void RefTable::AllocNodes(SQUnsignedInteger size)
|
|||||||
//////////////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////////////
|
||||||
//SQStringTable
|
//SQStringTable
|
||||||
/*
|
/*
|
||||||
* The following code is based on Lua 4.0 (Copyright 1994-2002 Tecgraf, PUC-Rio.)
|
* The following code is based on Lua 4.0 (Copyright 1994-2002 Tecgraf, PUC-Rio.)
|
||||||
* http://www.lua.org/copyright.html#4
|
* http://www.lua.org/copyright.html#4
|
||||||
* http://www.lua.org/source/4.0.1/src_lstring.c.html
|
* http://www.lua.org/source/4.0.1/src_lstring.c.html
|
||||||
*/
|
*/
|
||||||
|
|
||||||
SQStringTable::SQStringTable()
|
SQStringTable::SQStringTable()
|
||||||
{
|
{
|
||||||
|
4
src/3rdparty/squirrel/squirrel/sqtable.cpp
vendored
4
src/3rdparty/squirrel/squirrel/sqtable.cpp
vendored
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
see copyright notice in squirrel.h
|
* see copyright notice in squirrel.h
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "../../../stdafx.h"
|
#include "../../../stdafx.h"
|
||||||
|
|
||||||
|
8
src/3rdparty/squirrel/squirrel/sqtable.h
vendored
8
src/3rdparty/squirrel/squirrel/sqtable.h
vendored
@ -2,10 +2,10 @@
|
|||||||
#ifndef _SQTABLE_H_
|
#ifndef _SQTABLE_H_
|
||||||
#define _SQTABLE_H_
|
#define _SQTABLE_H_
|
||||||
/*
|
/*
|
||||||
* The following code is based on Lua 4.0 (Copyright 1994-2002 Tecgraf, PUC-Rio.)
|
* The following code is based on Lua 4.0 (Copyright 1994-2002 Tecgraf, PUC-Rio.)
|
||||||
* http://www.lua.org/copyright.html#4
|
* http://www.lua.org/copyright.html#4
|
||||||
* http://www.lua.org/source/4.0.1/src_ltable.c.html
|
* http://www.lua.org/source/4.0.1/src_ltable.c.html
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "sqstring.h"
|
#include "sqstring.h"
|
||||||
|
|
||||||
|
4
src/3rdparty/squirrel/squirrel/sqvm.cpp
vendored
4
src/3rdparty/squirrel/squirrel/sqvm.cpp
vendored
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
see copyright notice in squirrel.h
|
* see copyright notice in squirrel.h
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "../../../stdafx.h"
|
#include "../../../stdafx.h"
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user