summaryrefslogtreecommitdiff
path: root/libcult/cult/cli/arguments.ixx
diff options
context:
space:
mode:
Diffstat (limited to 'libcult/cult/cli/arguments.ixx')
-rw-r--r--libcult/cult/cli/arguments.ixx21
1 files changed, 0 insertions, 21 deletions
diff --git a/libcult/cult/cli/arguments.ixx b/libcult/cult/cli/arguments.ixx
deleted file mode 100644
index b05295d..0000000
--- a/libcult/cult/cli/arguments.ixx
+++ /dev/null
@@ -1,21 +0,0 @@
-// file : cult/cli/arguments.ixx
-// author : Boris Kolpackov <boris@kolpackov.net>
-// copyright : Copyright (c) 2005-2010 Boris Kolpackov
-// license : GNU GPL v2 + exceptions; see accompanying LICENSE file
-
-#include <cassert>
-
-namespace Cult
-{
- namespace CLI
- {
- inline
- BasicArguments::
- BasicArguments (Int& argc, Char** argv)
- : argc_ (argc), argv_ (argv)
- {
- assert (argc > 0);
- }
- }
-}
-