Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ISC Open Source Projects
Kea
Commits
0ad8fea2
Commit
0ad8fea2
authored
Feb 03, 2012
by
JINMEI Tatuya
Browse files
[master] fixed a build regression for SunStudio due to
#1604
. okayed on jabber.
parent
58b7b149
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/lib/dns/rrset.h
View file @
0ad8fea2
...
...
@@ -832,7 +832,8 @@ public:
// revisit the interface of managing RRset signatures, at which point this
// problem may go away.
virtual
void
addRRsig
(
const
rdata
::
RdataPtr
&
rdata
)
{
addRRsig
(
static_cast
<
const
rdata
::
ConstRdataPtr
&>
(
rdata
));
// Don't try to convert as a reference here. SunStudio will reject it.
addRRsig
(
static_cast
<
const
rdata
::
ConstRdataPtr
>
(
rdata
));
}
/// \brief Adds an RRSIG RRset to this RRset
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment