examples: cxx: avoid tick in warning message

The compiler is not to happy about having this tick in the warning
message. Switch to the more formal can not and be done with it.

menu_cxx_example_01.cc:3:26: warning: missing terminating ' character
This commit is contained in:
Stefan Schmidt 2018-01-15 10:38:36 +01:00
parent 9fc1dd1a4e
commit 2cc63bb8b2
3 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
#include <Elementary.hh>
#warning This example can't be implemented with EO APIs... FIXME
#warning This example can not be implemented with EO APIs... FIXME
using efl::eo::instantiate;

View File

@ -1,6 +1,6 @@
#include <Elementary.hh>
#warning This example can't be implemented with EO APIs... FIXME
#warning This example can not be implemented with EO APIs... FIXME
EAPI_MAIN int
elm_main (int argc EINA_UNUSED, char **argv EINA_UNUSED)

View File

@ -1,6 +1,6 @@
#include <Elementary.hh>
#warning This example can't be implemented with EO APIs... FIXME
#warning This example can not be implemented with EO APIs... FIXME
EAPI_MAIN int
elm_main (int argc EINA_UNUSED, char *argv[] EINA_UNUSED)