Rename files.

This commit is contained in:
CismonX 2019-03-14 23:23:21 +08:00
parent 053bf8ff3a
commit 44bd1dbcce
5 changed files with 7 additions and 7 deletions

View File

@ -4,7 +4,7 @@
// @Author CismonX // @Author CismonX
// //
#include "arma.hh" #include "php_arma.hh"
#include "complex.hh" #include "complex.hh"
namespace php_arma namespace php_arma

View File

@ -4,7 +4,7 @@
// @Author CismonX // @Author CismonX
// //
#include "arma.hh" #include "php_arma.hh"
#include "fill.hh" #include "fill.hh"
namespace php_arma namespace php_arma

View File

@ -4,7 +4,7 @@
// @Author CismonX // @Author CismonX
// //
#include "arma.hh" #include "php_arma.hh"
#include "interfaces.hh" #include "interfaces.hh"
#define N_INT "Internal\\" #define N_INT "Internal\\"

View File

@ -1,10 +1,10 @@
// //
// php-armadillo/arma.cc // php-armadillo/php_arma.cc
// //
// @Author CismonX // @Author CismonX
// //
#include "arma.hh" #include "php_arma.hh"
#include "interfaces.hh" #include "interfaces.hh"
#include "fill.hh" #include "fill.hh"
#include "complex.hh" #include "complex.hh"

View File

@ -17,14 +17,14 @@
#include <zend_exceptions.h> #include <zend_exceptions.h>
#include <complex> #include <complex>
#define PHP_ARMA_VERSION "0.0.1"
#if PHP_VERSION_ID >= 70400 #if PHP_VERSION_ID >= 70400
#define ZEND_ACC_CTOR 0 #define ZEND_ACC_CTOR 0
#endif #endif
extern zend_module_entry arma_module_entry; extern zend_module_entry arma_module_entry;
#define PHP_ARMA_VERSION "0.0.1"
typedef std::complex<double> cx_double; typedef std::complex<double> cx_double;
/// Helper functions. /// Helper functions.