argument: Suppress cppcoreguidelines-pro-bounds-pointer-arithmetic

Eventually Fix this by replacing this argument class with CLI11.

```
../argument.cpp:63:31: error: do not use pointer arithmetic [cppcoreguidelines-pro-bounds-pointer-arithmetic,-warnings-as-errors]
    std::cerr << "Usage: " << argv[0] << " [options]" << std::endl;
                              ^
```

Change-Id: I5ae5eb2a86ec3b26fbd323f854c79b6deb570ee0
Signed-off-by: Andrew Jeffery <andrew@aj.id.au>
diff --git a/argument.cpp b/argument.cpp
index 56e1e9c..f8e5aaf 100644
--- a/argument.cpp
+++ b/argument.cpp
@@ -60,6 +60,7 @@
 
 void ArgumentParser::usage(char** argv)
 {
+    // NOLINTNEXTLINE
     std::cerr << "Usage: " << argv[0] << " [options]" << std::endl;
     std::cerr << "Options:" << std::endl;
     std::cerr << "    --help               Print this menu" << std::endl;