Move sexpr_funcs to sexpr_fn. Using consistent file name conventions.

Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
Leonardo de Moura 2013-09-12 18:27:46 -07:00
parent 2e990ef7d3
commit c655e9fe7b
7 changed files with 6 additions and 6 deletions

View file

@ -9,7 +9,7 @@ Author: Soonho Kong
#include <sstream> #include <sstream>
#include "format.h" #include "format.h"
#include "test.h" #include "test.h"
#include "sexpr_funcs.h" #include "sexpr_fn.h"
#include "options.h" #include "options.h"
#include "mpq.h" #include "mpq.h"
using namespace lean; using namespace lean;

View file

@ -6,7 +6,7 @@ Author: Leonardo de Moura
*/ */
#include <sstream> #include <sstream>
#include "sexpr.h" #include "sexpr.h"
#include "sexpr_funcs.h" #include "sexpr_fn.h"
#include "mpq.h" #include "mpq.h"
#include "name.h" #include "name.h"
#include "test.h" #include "test.h"

View file

@ -1,2 +1,2 @@
add_library(sexpr sexpr.cpp sexpr_funcs.cpp format.cpp options.cpp) add_library(sexpr sexpr.cpp sexpr_fn.cpp format.cpp options.cpp)
target_link_libraries(sexpr ${LEAN_LIBS}) target_link_libraries(sexpr ${LEAN_LIBS})

View file

@ -8,7 +8,7 @@
#include "sexpr.h" #include "sexpr.h"
#include "format.h" #include "format.h"
#include "escaped.h" #include "escaped.h"
#include "sexpr_funcs.h" #include "sexpr_fn.h"
#include "options.h" #include "options.h"
#ifndef LEAN_DEFAULT_PP_INDENTATION #ifndef LEAN_DEFAULT_PP_INDENTATION

View file

@ -7,7 +7,7 @@ Author: Leonardo de Moura
#include <memory> #include <memory>
#include "options.h" #include "options.h"
#include "option_declarations.h" #include "option_declarations.h"
#include "sexpr_funcs.h" #include "sexpr_fn.h"
namespace lean { namespace lean {
std::ostream & operator<<(std::ostream & out, option_kind k) { std::ostream & operator<<(std::ostream & out, option_kind k) {

View file

@ -4,7 +4,7 @@ Released under Apache 2.0 license as described in the file LICENSE.
Author: Leonardo de Moura Author: Leonardo de Moura
*/ */
#include "sexpr_funcs.h" #include "sexpr_fn.h"
namespace lean { namespace lean {