aboutsummaryrefslogtreecommitdiff
path: root/src/processor/static_address_map.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/processor/static_address_map.h')
-rw-r--r--src/processor/static_address_map.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/processor/static_address_map.h b/src/processor/static_address_map.h
index 6bafc667..9d1a467b 100644
--- a/src/processor/static_address_map.h
+++ b/src/processor/static_address_map.h
@@ -52,15 +52,15 @@ template<typename AddressType, typename EntryType>
class StaticAddressMap {
public:
StaticAddressMap(): map_() { }
- explicit StaticAddressMap(const char *map_data): map_(map_data) { }
+ explicit StaticAddressMap(const char* map_data): map_(map_data) { }
// Locates the entry stored at the highest address less than or equal to
// the address argument. If there is no such range, returns false. The
// entry is returned in entry, which is a required argument. If
// entry_address is not NULL, it will be set to the address that the entry
// was stored at.
- bool Retrieve(const AddressType &address,
- const EntryType *&entry, AddressType *entry_address) const;
+ bool Retrieve(const AddressType& address,
+ const EntryType*& entry, AddressType* entry_address) const;
private:
friend class ModuleComparer;