forked from nmap/nmap
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Avoid hidden overloaded virtual functions
Since the functions were hidden for the comiler, I specified every function that was being hidden in the IPv*Header.h header files. This allows us to use both overloaded functions and the original one instead of having one being hidden by the others. Here is the compiler warning output before the fix: warning: 'file::function' hides overloaded virtual function note: hidden overloaded virtual function 'file2::function' declared here: different qualifiers
- Loading branch information
vincent
committed
Jul 1, 2016
1 parent
900f015
commit 9703fea
Showing
2 changed files
with
11 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters