diff options
author | Daniel Kolesa <d.kolesa@osg.samsung.com> | 2018-02-27 13:00:36 +0100 |
---|---|---|
committer | Daniel Kolesa <d.kolesa@osg.samsung.com> | 2018-02-27 16:12:35 +0100 |
commit | 6a284e48c92ccb8a56cf68bff4c3b1c789b479ec (patch) | |
tree | 369e7a5801132aa8675bab288f247d7672e86516 /src/lib/eolian_cxx | |
parent | 25e689a6f5c5161d49938639ec9f06bcba893439 (diff) |
eolian: eolian_* -> eolian_state_*, Eolian -> Eolian_State
Diffstat (limited to 'src/lib/eolian_cxx')
-rw-r--r-- | src/lib/eolian_cxx/Eolian_Cxx.hh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/eolian_cxx/Eolian_Cxx.hh b/src/lib/eolian_cxx/Eolian_Cxx.hh index ec5062fee3..2eb9736cb0 100644 --- a/src/lib/eolian_cxx/Eolian_Cxx.hh +++ b/src/lib/eolian_cxx/Eolian_Cxx.hh | |||
@@ -26,14 +26,14 @@ struct eolian_init | |||
26 | 26 | ||
27 | struct eolian_state | 27 | struct eolian_state |
28 | { | 28 | { |
29 | Eolian *value; | 29 | Eolian_State *value; |
30 | eolian_state() | 30 | eolian_state() |
31 | { | 31 | { |
32 | value = ::eolian_new(); | 32 | value = ::eolian_state_new(); |
33 | } | 33 | } |
34 | ~eolian_state() | 34 | ~eolian_state() |
35 | { | 35 | { |
36 | ::eolian_free(value); | 36 | ::eolian_state_free(value); |
37 | } | 37 | } |
38 | 38 | ||
39 | inline Eolian_Unit const* as_unit() const | 39 | inline Eolian_Unit const* as_unit() const |