Skip to content

Commit 4489de4

Browse files
committed
Spell check
1 parent c21453b commit 4489de4

30 files changed

+27
-86
lines changed

ChangeLog

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
2.0.11:
2-
- Drop bobcat linking
2+
- Release fix: drop bobcat linking, thanks to Tony Mancill for noticing!
3+
- Spell check run
34

45
2.0.10:
56
- Refresh build dependencies and upgrade to C++17
@@ -110,7 +111,7 @@
110111

111112
1.4.1:
112113
- Bugfix: moved linker flags to behind the objects in accordance with
113-
( http://www.network-theory.co.uk/docs/gccintro/gccintro_18.html )
114+
( http://www.network-theory.co.uk/docs/gccintro/gccintro_18.html )
114115

115116
1.4.0:
116117
- The option -V has been added in support of --version.
@@ -291,8 +292,8 @@ v0.3.5:
291292
- Added option to precompile all headers, not just internal headers.
292293
I noticed that precompiler headers is only faster when you don't use
293294
internal headers at all, otherwise it's not that handy.
294-
! Behaviour change: precompile before any normal compilation.
295-
(due to flattend build algorithm)
295+
! Behavior change: precompile before any normal compilation.
296+
(due to flattened build algorithm)
296297
- Small speed-up (in isReadable code).
297298
- The distclean command nolonger uses clean, so it should work
298299
without a working source tree again (which is the reason it's there).

src/MD5Info/getInstance.cc

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,6 @@
1515
along with ccbuild. If not, see <http://www.gnu.org/licenses/>.
1616
*/
1717

18-
19-
20-
21-
22-
2318
#include "MD5Info.ih"
2419

2520
MD5Info &MD5Info::getInstance() {

src/arguments/arguments.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ Arguments::Arguments(Option const *options, int argc, char *argv[])
118118
++optionIndex;
119119
}
120120

121-
//Add empty element, superflourisch if newly allocated space contains zeros
121+
//Add empty element, superfluous if newly allocated space contains zeros
122122
longOpts[nlongOpts].name = 0;
123123
longOpts[nlongOpts].has_arg = 0;
124124
longOpts[nlongOpts].flag = 0;

src/arguments/arguments.hh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ First initialize the singleton with options and the commandline arguments.
3838
3939
Arguments can be tested using the functions flagged, value and rest.
4040
Options should be a 3xN array of character pointers, ending in {0,0,0}. Options are defined with:
41-
{"flagges and long names, space seperated", "valuename, if any", "Help text explaning what the option is."}
41+
{"flags and long names, space separated", "valuename, if any", "Help text explaning what the option is."}
4242
4343
WARNING: Arguments only supports up to 39 long options currently! See the TODO in Arguments.cc
4444
@@ -103,13 +103,13 @@ class Arguments {
103103
std::string d_empty; ///<A non const empty string
104104

105105
static Arguments *s_instance; ///<Pointer to the singleton instance
106-
static OpenMP::Lock s_instanceLock; ///<Lock for autmoatic instantiation and destruction
106+
static OpenMP::Lock s_instanceLock; ///<Lock for automatic instantiation and destruction
107107

108108

109109
public:
110-
///\brief A structure containing the defenition of a commandline option
110+
///\brief A structure containing the definition of a commandline option
111111
struct Option {
112-
std::string flags; ///<All flags it can be called with, space seperated ("f force" will allow "-f" and "--force")
112+
std::string flags; ///<All flags it can be called with, space separated ("f force" will allow "-f" and "--force")
113113
std::string value; ///<The value, if any, the argument of the option is called. "<value>" for required, "[value]" for optional.
114114
std::string helpText; ///< The help text, describing this option. This is used when generating the help output.
115115
};

src/arguments/clear.cc

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,6 @@
1515
along with ccbuild. If not, see <http://www.gnu.org/licenses/>.
1616
*/
1717

18-
19-
20-
21-
22-
2318
#include "arguments.ih"
2419

2520
void Arguments::clear() {

src/compiler/compile.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ int Compiler::compile(std::string target,
2727
assert(target != outputFile);
2828
string command = compileCommand(target, outputFile);
2929

30-
//If possible fork this... if(Options::optino<unsigned>("numThreadsLeft") > 0) fork exit(system)
30+
//If possible fork this... if(Options::option<unsigned>("numThreadsLeft") > 0) fork exit(system)
3131

3232
int retValue = System::system(command);
3333

src/compiler/operator_add.cc

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,6 @@
1616
*/
1717

1818
//See GNU manual for options: http://gcc.gnu.org/onlinedocs/gcc/Link-Options.html#Link-Options
19-
20-
2119
#include "compiler.ih"
2220
Compiler const Compiler::operator+(Compiler const &rvalue) {
2321
//Adding two compilers will merge their options

src/compiler/precompile.cc

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,6 @@
1515
along with ccbuild. If not, see <http://www.gnu.org/licenses/>.
1616
*/
1717

18-
19-
20-
21-
22-
2318
#include "compiler.ih"
2419

2520
int Compiler::precompile(std::string target,

src/compiler/statics.cc

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
You should have received a copy of the GNU General Public License
1515
along with ccbuild. If not, see <http://www.gnu.org/licenses/>.
1616
*/
17-
1817
#include "compiler.ih"
1918

2019
std::string const Compiler::s_highLightOff("\x1b\x5b\x30\x6d"); //\\e[0m

src/fileSystem/cleanPath.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ std::string FileSystem::cleanPath(string const &filename) {
6060
clean = clean.substr(0, clean.length() -1);
6161
}
6262

63-
//Strip superflourous './' for local path
63+
//Strip superfluous './' for local path
6464
if(clean[0] == '.' && clean[1] == '/') {
6565
clean = clean.substr(2);
6666
}

0 commit comments

Comments
 (0)