diff options
author | 2016-07-06 10:38:54 -0400 | |
---|---|---|
committer | 2016-07-07 06:59:35 -0400 | |
commit | e3cb2c7d78a63f3ce3c4a244e0ba06356f422b95 (patch) | |
tree | b89be5cf6b90eff8fb0729d880dfccce641fe719 /src/devices/imagedev/bitbngr.cpp | |
parent | 6e64e3314ab53e17e74c1e664e23554d495eb85a (diff) |
C++-ification of src/lib/util/opresolv.[cpp|h] (moved to util:: namespace, changed option_resolution to be a class, etc)
Diffstat (limited to 'src/devices/imagedev/bitbngr.cpp')
-rw-r--r-- | src/devices/imagedev/bitbngr.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/imagedev/bitbngr.cpp b/src/devices/imagedev/bitbngr.cpp index 9577d9e1efd..79e4dd0df36 100644 --- a/src/devices/imagedev/bitbngr.cpp +++ b/src/devices/imagedev/bitbngr.cpp @@ -88,7 +88,7 @@ bool bitbanger_device::call_load(void) return IMAGE_INIT_PASS; } -bool bitbanger_device::call_create(int format_type, option_resolution *format_options) +bool bitbanger_device::call_create(int format_type, util::option_resolution *format_options) { /* we don't need to do anything special */ return IMAGE_INIT_PASS; |