ami pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=3661f719540fca170f3441c31d70aecab1dc655a

commit 3661f719540fca170f3441c31d70aecab1dc655a
Author: Amitesh Singh <amitesh...@samsung.com>
Date:   Wed Nov 22 13:45:21 2017 +0900

    elm: efl access: fix the warnings.
    
    There were many warnings while building elm.
    
    --->
    ./src/lib/elementary/efl_access.eo.h:433:55: warning: duplicate ‘const’ 
declaration specifier
     -Wduplicate-decl-specifier]
     EOAPI void efl_access_attribute_append(Eo *obj, const const char *key, 
const const char *value);
    <---
---
 src/lib/elementary/efl_access.eo | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/lib/elementary/efl_access.eo b/src/lib/elementary/efl_access.eo
index 33b361d0bb..360832b28f 100644
--- a/src/lib/elementary/efl_access.eo
+++ b/src/lib/elementary/efl_access.eo
@@ -305,8 +305,8 @@ mixin Efl.Access (Efl.Interface, Efl.Object)
          [[Add key-value pair identifying object extra attributes
          ]]
          params {
-            @in key: const(string); [[The string key to give extra 
information]]
-            @in value: const(string); [[The string value to give extra 
information]]
+            @in key: string; [[The string key to give extra information]]
+            @in value: string; [[The string value to give extra information]]
          }
       }
       attributes_clear {

-- 


Reply via email to