aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSzczepan Zalega <szczepan@nitrokey.com>2016-10-24 14:52:10 +0200
committerSzczepan Zalega <szczepan@nitrokey.com>2016-11-26 18:56:23 +0100
commit9a56e6c27104ead60a89c403e77494bfcfea563f (patch)
tree309061cfbdda02b30316c8bdbcc2a4464ee14547
parentec8b19e231390e25860218000d77d622d94782c7 (diff)
downloadlibnitrokey-9a56e6c27104ead60a89c403e77494bfcfea563f.tar.gz
libnitrokey-9a56e6c27104ead60a89c403e77494bfcfea563f.tar.bz2
Remove static keyword from CommandID dissection
Signed-off-by: Szczepan Zalega <szczepan@nitrokey.com>
-rw-r--r--include/command.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/command.h b/include/command.h
index 7f723e5..6e3525e 100644
--- a/include/command.h
+++ b/include/command.h
@@ -13,7 +13,7 @@ namespace nitrokey {
constexpr static CommandID command_id() { return cmd_id; }
template<typename T>
- static std::string dissect(const T &) {
+ std::string dissect(const T &) {
return std::string("Payload dissection is unavailable");
}
};