Skip to content

Commit e671838

Browse files
Update soap.h
1 parent 40e5103 commit e671838

File tree

1 file changed

+0
-22
lines changed

1 file changed

+0
-22
lines changed

code/logic/fossil/io/soap.h

Lines changed: 0 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -276,28 +276,6 @@ namespace fossil {
276276
std::unique_ptr<char, decltype(&free)> ptr(fossil_io_soap_filter_offensive(text.c_str()), free);
277277
return ptr ? std::string(ptr.get()) : std::string{};
278278
}
279-
280-
/**
281-
* @brief Attempt to identify logical fallacies in the input.
282-
*
283-
* @param text The input string.
284-
* @return Description of detected fallacy or empty string.
285-
*/
286-
static std::string detect_fallacy(const std::string &text) {
287-
const char* result = fossil_io_soap_detect_fallacy(text.c_str());
288-
return result ? std::string(result) : std::string{};
289-
}
290-
291-
/**
292-
* @brief Generate a brief summary of the key idea in the input.
293-
*
294-
* @param text The input string.
295-
* @return Summary string.
296-
*/
297-
static std::string summarize(const std::string &text) {
298-
std::unique_ptr<char, decltype(&free)> ptr(fossil_io_soap_summarize(text.c_str()), free);
299-
return ptr ? std::string(ptr.get()) : std::string{};
300-
}
301279
};
302280

303281
} // namespace io

0 commit comments

Comments
 (0)