diff options
author | Michele Calgaro <[email protected]> | 2020-01-30 20:17:44 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2020-01-30 20:17:44 +0900 |
commit | db94b489c3e4d70cb718c04b349e275375778a79 (patch) | |
tree | bf744f9d3bed5b98d355e31b87ba84fa528efc24 | |
parent | 1ce2d9e3a709b2e4089eb75103e128a43f43f498 (diff) | |
download | bibletime-db94b489c3e4d70cb718c04b349e275375778a79.tar.gz bibletime-db94b489c3e4d70cb718c04b349e275375778a79.zip |
Removed explicit usage of the 'register' keyword.
Signed-off-by: Michele Calgaro <[email protected]>
-rw-r--r-- | bibletime/backend/btstringmgr.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bibletime/backend/btstringmgr.cpp b/bibletime/backend/btstringmgr.cpp index ca0ee83..23be250 100644 --- a/bibletime/backend/btstringmgr.cpp +++ b/bibletime/backend/btstringmgr.cpp @@ -54,7 +54,7 @@ bool BTStringMgr::supportsUnicode() const { const bool BTStringMgr::isUtf8(const char *buf) const { int i, n; - register unsigned char c; + unsigned char c; bool gotone = false; #define F 0 /* character never appears in text */ |