This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| import json | |
| import subprocess | |
| import sys | |
| import os | |
| def is_pch_entry(entry: dict) -> bool: | |
| file = entry.get("file", "") | |
| command = entry.get("command", "") or " ".join(entry.get("arguments", [])) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #ifndef __RBTREE_H__ | |
| #define __RBTREE_H__ | |
| #include <assert.h> | |
| #include <string> | |
| #ifdef DEBUG | |
| #include "debug.h" | |
| #endif |