[poincare] n_ary_expression_node.h -> n_ary_expression.h

This commit is contained in:
Léa Saviot
2019-06-28 16:30:08 +02:00
committed by Émilie Feral
parent 5a79d26191
commit 976b506c70
5 changed files with 6 additions and 6 deletions

View File

@@ -91,7 +91,7 @@ src += $(addprefix poincare/src/,\
matrix_trace.cpp \
matrix_transpose.cpp \
multiplication.cpp \
n_ary_expression_node.cpp \
n_ary_expression.cpp \
naperian_logarithm.cpp \
nth_root.cpp \
number.cpp \

View File

@@ -2,7 +2,7 @@
#define POINCARE_ADDITION_H
#include <poincare/approximation_helper.h>
#include <poincare/n_ary_expression_node.h>
#include <poincare/n_ary_expression.h>
#include <poincare/rational.h>
namespace Poincare {

View File

@@ -2,7 +2,7 @@
#define POINCARE_MULTIPLICATION_H
#include <poincare/approximation_helper.h>
#include <poincare/n_ary_expression_node.h>
#include <poincare/n_ary_expression.h>
namespace Poincare {

View File

@@ -1,5 +1,5 @@
#ifndef POINCARE_N_ARY_EXPRESSION_NODE_H
#define POINCARE_N_ARY_EXPRESSION_NODE_H
#ifndef POINCARE_N_ARY_EXPRESSION_H
#define POINCARE_N_ARY_EXPRESSION_H
#include <poincare/expression.h>

View File

@@ -1,4 +1,4 @@
#include <poincare/n_ary_expression_node.h>
#include <poincare/n_ary_expression.h>
extern "C" {
#include <assert.h>
#include <stdlib.h>