Skip to content

Commit

Permalink
Replace math.h header with cmath
Browse files Browse the repository at this point in the history
  • Loading branch information
ferdnyc committed Aug 7, 2020
1 parent 0995042 commit cdd2efd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion include/Fraction.h
Expand Up @@ -31,7 +31,7 @@
#ifndef OPENSHOT_FRACTION_H
#define OPENSHOT_FRACTION_H

#include <math.h>
#include <cmath>

namespace openshot {

Expand Down
2 changes: 1 addition & 1 deletion include/FrameMapper.h
Expand Up @@ -33,7 +33,7 @@

#include <assert.h>
#include <iostream>
#include <math.h>
#include <cmath>
#include <vector>
#include <memory>
#include "CacheMemory.h"
Expand Down
2 changes: 1 addition & 1 deletion include/KeyFrame.h
Expand Up @@ -33,7 +33,7 @@

#include <iostream>
#include <iomanip>
#include <math.h>
#include <cmath>
#include <assert.h>
#include <vector>
#include "Exceptions.h"
Expand Down

0 comments on commit cdd2efd

Please sign in to comment.