File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -220,12 +220,13 @@ bool ProfileLoader::checkAudioProfile( const Profile& profileToCheck ) const
220
220
return isValid;
221
221
}
222
222
223
- // To print a profile
223
+ # ifndef SWIG
224
224
std::ostream &operator <<( std::ostream &os, const ProfileLoader::Profile &profile )
225
225
{
226
226
for ( ProfileLoader::Profile::const_iterator it = profile.begin (); it != profile.end (); ++it )
227
227
os << " (" << it->first << " , " << it->second << " )" << std::endl;
228
228
return os;
229
229
}
230
+ #endif
230
231
231
232
}
Original file line number Diff line number Diff line change @@ -76,8 +76,10 @@ class AvExport ProfileLoader
76
76
Profiles _profiles;
77
77
};
78
78
79
+ #ifndef SWIG
79
80
// To print a profile
80
81
std::ostream &operator <<( std::ostream &os, const ProfileLoader::Profile &profile );
82
+ #endif
81
83
82
84
}
83
85
#endif
You can’t perform that action at this time.
0 commit comments