Skip to content

Commit

Permalink
numb changes
Browse files Browse the repository at this point in the history
  • Loading branch information
kosloot committed Nov 18, 2024
1 parent b727cda commit d2174b0
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion include/frog/FrogAPI.h
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ maximum of 500 words PER SENTENC. Which is already a lot!
std::string command; ///< the original command that invoked Frog

private:
FrogOptions( const FrogOptions & );
FrogOptions( const FrogOptions & ) = delete;
};

/// \brief This is the API class which can be used to set up Frog and run it
Expand Down
2 changes: 1 addition & 1 deletion include/frog/ckyparser.h
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ enum dirType { ROOT, LEFT, RIGHT, ERROR };
class Constraint {
public:
enum ConstraintType { Incoming, Dependency, Direction };
Constraint( double w, int i ): weight(w),tokenIndex(i){
Constraint( double w, int i ): weight(w),tokenIndex(i){
};
virtual ~Constraint(){};
virtual void put( std::ostream& os ) const {
Expand Down
4 changes: 2 additions & 2 deletions include/frog/mblem_mod.h
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,6 @@ class Mblem {
void makeUnique();
void add_lemmas( const std::vector<folia::Word*>&,
const frog_data& ) const;
Mblem( const Mblem& ) = delete;
Mblem& operator=( const Mblem& ) = delete;
private:
icu::UnicodeString call_server( const icu::UnicodeString& );
void read_transtable( const std::string& );
Expand All @@ -96,6 +94,8 @@ class Mblem {
TiCC::LogStream *errLog;
TiCC::LogStream *dbgLog;
TiCC::UniFilter *filter;
Mblem( const Mblem& ) = delete;
Mblem& operator=( const Mblem& ) = delete;
};

#endif

0 comments on commit d2174b0

Please sign in to comment.