Commits

Ville Suoranta authored b7d4367e3d7 Merge
Pull request #862: CAS-14265

Merge in CASA/casa6 from CAS-14265 to master * commit 'd34f304e22c5cbf50d9d3ec8b70f800603c85ae7': Fix C++17 deprecations
No tags

casatools/src/code/air_casawvr/src/dispersion.h

Modified
12 12 Routines for dealing with dispersion
13 13 */
14 14 #ifndef _LIBAIR_DISPERSION_HPP__
15 15 #define _LIBAIR_DISPERSION_HPP__
16 16
17 17 #include <map>
18 18 #include <functional>
19 19
20 20 namespace LibAIR2 {
21 21
22 - class Dispersion:
23 - std::unary_function<double, double>
22 + class Dispersion
24 23 {
25 -
24 + typedef double Arg1 ;
25 + typedef double Result;
26 26 };
27 27
28 28 class DispersionTab:
29 29 public Dispersion,
30 30 public std::map<double, double>
31 31 {
32 32
33 33 public:
34 34
35 35 /** Return interpolated dispersion factor at frequency fnu

Everything looks good. We'll let you know here if there's anything you should know about.

Add shortcut