diff options
author | Gabriel Dos Reis <gdr@axiomatics.org> | 2017-12-27 04:38:07 -0800 |
---|---|---|
committer | Gabriel Dos Reis <gdr@axiomatics.org> | 2017-12-27 04:38:07 -0800 |
commit | 83ff2c1707b3c1e304feb2127503d9878b05fa9d (patch) | |
tree | 06cadddd637ba9474bfacc2b14c18d1ebafe0def /src/hyper | |
parent | d16f9a090321f1ec1e8b20f1fb30859bf93cea46 (diff) | |
download | open-axiom-83ff2c1707b3c1e304feb2127503d9878b05fa9d.tar.gz |
Remove antiquated check for alignas
C++14 required, alignas and alignof are now well supported as C++11
features.
Diffstat (limited to 'src/hyper')
-rw-r--r-- | src/hyper/hthits.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/hyper/hthits.c b/src/hyper/hthits.c index 8b2c3c10..470bf297 100644 --- a/src/hyper/hthits.c +++ b/src/hyper/hthits.c @@ -96,7 +96,7 @@ badDB() static void -untexbuf(register char* s) +untexbuf(char* s) { char *d = s; |