Skip to content

Commit

Permalink
Fix win issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniele Pallastrelli committed Apr 13, 2019
1 parent 0365f5c commit beae4a5
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 6 deletions.
4 changes: 2 additions & 2 deletions examples/complete.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*******************************************************************************
* CLI - A simple command line interface.
* Copyright (C) Daniele Pallastrelli
* Copyright (C) 2016 Daniele Pallastrelli
*
* Boost Software License - Version 1.0 - August 17th, 2003
*
Expand Down Expand Up @@ -67,7 +67,7 @@ int main()
"Print the file descriptor specified",
{"file_descriptor"} );
rootMenu -> Insert(
"reverse", {"string_to_revers"},
"reverse", {"string_to_revert"},
[](std::ostream& out, const string& arg)
{
string copy(arg);
Expand Down
2 changes: 1 addition & 1 deletion examples/filesession.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*******************************************************************************
* CLI - A simple command line interface.
* Copyright (C) Daniele Pallastrelli
* Copyright (C) 2019 Daniele Pallastrelli
*
* Boost Software License - Version 1.0 - August 17th, 2003
*
Expand Down
2 changes: 1 addition & 1 deletion examples/pluginmanager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ class Strings : public RegisteredPlugin<Strings, StringsName>
{
auto subMenu = make_unique<Menu>(Name());
subMenu -> Insert(
"reverse", {"string_to_revers"},
"reverse", {"string_to_revert"},
[](std::ostream& out, const string& arg)
{
string copy(arg);
Expand Down
2 changes: 1 addition & 1 deletion examples/simplelocalsession.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*******************************************************************************
* CLI - A simple command line interface.
* Copyright (C) 2016-2018 Daniele Pallastrelli
* Copyright (C) 2016 Daniele Pallastrelli
*
* Boost Software License - Version 1.0 - August 17th, 2003
*
Expand Down
1 change: 1 addition & 0 deletions include/cli/cli.h
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
#include <vector>
#include <memory>
#include <functional>
#include <cctype> // std::isspace
#include <type_traits>
#include <boost/lexical_cast.hpp>
#include "colorprofile.h"
Expand Down
2 changes: 1 addition & 1 deletion test/makefile.win32
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ EXE_OBJ_FILES= \
test_commonprefix.obj \
driver.obj

.PHONY: all mainapp plugin1 plugin2 test clean
.PHONY: all mainapp test clean

# create directories and build application
all: clean mainapp test
Expand Down

0 comments on commit beae4a5

Please sign in to comment.