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
55
src/3rdparty/squirrel/include/squirrel.h
vendored
55
src/3rdparty/squirrel/include/squirrel.h
vendored
@ -1,32 +1,31 @@
|
|||||||
/*
|
/*
|
||||||
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_
|
||||||
|
2
src/3rdparty/squirrel/squirrel/sqapi.cpp
vendored
2
src/3rdparty/squirrel/squirrel/sqapi.cpp
vendored
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
see copyright notice in squirrel.h
|
* see copyright notice in squirrel.h
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "../../../stdafx.h"
|
#include "../../../stdafx.h"
|
||||||
|
8
src/3rdparty/squirrel/squirrel/sqbaselib.cpp
vendored
8
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"
|
||||||
|
|
||||||
|
2
src/3rdparty/squirrel/squirrel/sqclass.cpp
vendored
2
src/3rdparty/squirrel/squirrel/sqclass.cpp
vendored
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
see copyright notice in squirrel.h
|
* see copyright notice in squirrel.h
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "../../../stdafx.h"
|
#include "../../../stdafx.h"
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
see copyright notice in squirrel.h
|
* see copyright notice in squirrel.h
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "../../../stdafx.h"
|
#include "../../../stdafx.h"
|
||||||
|
2
src/3rdparty/squirrel/squirrel/sqdebug.cpp
vendored
2
src/3rdparty/squirrel/squirrel/sqdebug.cpp
vendored
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
see copyright notice in squirrel.h
|
* see copyright notice in squirrel.h
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "../../../stdafx.h"
|
#include "../../../stdafx.h"
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
see copyright notice in squirrel.h
|
* see copyright notice in squirrel.h
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "../../../stdafx.h"
|
#include "../../../stdafx.h"
|
||||||
|
2
src/3rdparty/squirrel/squirrel/sqlexer.cpp
vendored
2
src/3rdparty/squirrel/squirrel/sqlexer.cpp
vendored
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
see copyright notice in squirrel.h
|
* see copyright notice in squirrel.h
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "../../../stdafx.h"
|
#include "../../../stdafx.h"
|
||||||
|
2
src/3rdparty/squirrel/squirrel/sqmem.cpp
vendored
2
src/3rdparty/squirrel/squirrel/sqmem.cpp
vendored
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
see copyright notice in squirrel.h
|
* see copyright notice in squirrel.h
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "../../../stdafx.h"
|
#include "../../../stdafx.h"
|
||||||
|
2
src/3rdparty/squirrel/squirrel/sqobject.cpp
vendored
2
src/3rdparty/squirrel/squirrel/sqobject.cpp
vendored
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
see copyright notice in squirrel.h
|
* see copyright notice in squirrel.h
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "../../../stdafx.h"
|
#include "../../../stdafx.h"
|
||||||
|
2
src/3rdparty/squirrel/squirrel/sqstate.cpp
vendored
2
src/3rdparty/squirrel/squirrel/sqstate.cpp
vendored
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
see copyright notice in squirrel.h
|
* see copyright notice in squirrel.h
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "../../../stdafx.h"
|
#include "../../../stdafx.h"
|
||||||
|
2
src/3rdparty/squirrel/squirrel/sqtable.cpp
vendored
2
src/3rdparty/squirrel/squirrel/sqtable.cpp
vendored
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
see copyright notice in squirrel.h
|
* see copyright notice in squirrel.h
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "../../../stdafx.h"
|
#include "../../../stdafx.h"
|
||||||
|
2
src/3rdparty/squirrel/squirrel/sqvm.cpp
vendored
2
src/3rdparty/squirrel/squirrel/sqvm.cpp
vendored
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
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