Skip to content

Commit

Permalink
Merge pull request hpcc-systems#3744 from rengolin/warnings
Browse files Browse the repository at this point in the history
HPCC-8383 Add using to access declaration

Reviewed-by: Gavin Halliday <ghalliday@hpccsystems.com>
  • Loading branch information
ghalliday committed Dec 3, 2012
2 parents 18837b1 + 14a53c8 commit 73715ad
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion common/fileview2/fvsource.ipp
Expand Up @@ -33,7 +33,7 @@

interface IRecordSizeEx : public IRecordSize
{
IRecordSize::getRecordSize;
using IRecordSize::getRecordSize;
virtual size32_t getRecordSize(unsigned maxLength, const void *rec) = 0;
};

Expand Down
4 changes: 2 additions & 2 deletions ecl/hqlcpp/hqlregex.ipp
Expand Up @@ -93,8 +93,8 @@ protected:
class HqlRegexHashTable : public SuperHashTable
{
public:
SuperHashTable::add;
SuperHashTable::find;
using SuperHashTable::add;
using SuperHashTable::find;
~HqlRegexHashTable() { releaseAll(); }

private:
Expand Down

0 comments on commit 73715ad

Please sign in to comment.