Opened 10 years ago
Closed 10 years ago
#7339 closed Bugs (fixed)
boost algorithm hex - hex_char_to_int must be inline
Reported by: | Owned by: | Marshall Clow | |
---|---|---|---|
Milestone: | To Be Determined | Component: | algorithm |
Version: | Boost 1.51.0 | Severity: | Problem |
Keywords: | hex | Cc: |
Description
boost::algorithm::detail::hex_char_to_int must be inline to avoid linker error (multiply defined symbols)
ps tested on visual studio 2008
Change History (2)
comment:1 by , 10 years ago
comment:2 by , 10 years ago
Resolution: | → fixed |
---|---|
Status: | new → closed |
Note:
See TracTickets
for help on using tickets.
I committed a fix in [80696], please let me know if it works for you.
Note: Inline is "just a hint" to the compiler, there's no guarantee that the function will actually be inlined - so that's not a sufficient fix.