Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 28af4c39 authored by Dan Albert's avatar Dan Albert
Browse files

Don't use `register`.

This causes a build failure with GCC and C++14. Fix by just not using
the register keyword.

"Guideline: Never write register. It's exactly as meaningful as
whitespace."
http://www.drdobbs.com/keywords-that-arent-or-comments-by-anoth/184403859

Change-Id: I275735c55e97e613e1704c1b896793740db8f404
parent 701e0536
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -147,7 +147,7 @@ Word32 L_negate (Word32 L_var1)
/*----------------------------------------------------------------------------
/*----------------------------------------------------------------------------
; FUNCTION CODE
; FUNCTION CODE
----------------------------------------------------------------------------*/
----------------------------------------------------------------------------*/
Word32 L_negate(register Word32 L_var1)
Word32 L_negate(Word32 L_var1)
{
{
    /*----------------------------------------------------------------------------
    /*----------------------------------------------------------------------------
    ; Define all local variables
    ; Define all local variables